From 406d4101c0a69fa7b368a33d86badc1f61e67d42 Mon Sep 17 00:00:00 2001 From: nymkappa Date: Tue, 24 May 2022 11:55:43 +0200 Subject: [PATCH 01/19] Add loading spinner in /blocks page --- .../app/components/blocks-list/blocks-list.component.html | 1 + .../app/components/blocks-list/blocks-list.component.scss | 6 ++++++ 2 files changed, 7 insertions(+) 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 face9452b..9abb0f98f 100644 --- a/frontend/src/app/components/blocks-list/blocks-list.component.html +++ b/frontend/src/app/components/blocks-list/blocks-list.component.html @@ -2,6 +2,7 @@

Blocks

+
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 ead712be0..817b73192 100644 --- a/frontend/src/app/components/blocks-list/blocks-list.component.scss +++ b/frontend/src/app/components/blocks-list/blocks-list.component.scss @@ -1,3 +1,9 @@ +.spinner-border { + height: 25px; + width: 25px; + margin-top: 13px; +} + .container-xl { max-width: 1400px; padding-bottom: 100px; From f55590269ec1ead71004d51e8c59c2ebf323ccb3 Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Thu, 19 May 2022 12:43:37 -0400 Subject: [PATCH 02/19] Move manual install docs away from main readme Replace with links to docker/, frontend/, and /backend. --- README.md | 176 +++--------------------------------------------------- 1 file changed, 7 insertions(+), 169 deletions(-) diff --git a/README.md b/README.md index db921d86d..ae0e2191e 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,7 @@ It is an open-source project developed and operated for the benefit of the Bitco 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. -We support the following installation methods, ranked in order from simple to advanced: - -1) [One-click installation on full-node distros](#one-click-installation) -2) [Docker installation on Linux using docker-compose](./docker) -3) [Manual installation on Linux or FreeBSD](#manual-installation) -4) [Production installation on a powerful FreeBSD server](./production) - -This doc offers install notes on the one-click method and manual install method. Follow the links above for install notes on Docker and production installations. +**Most people should use a one-click install method.** Other install methods are meant for developers and others with experience managing servers. ## One-Click Installation @@ -29,167 +22,12 @@ Mempool can be conveniently installed on the following full-node distros: - [myNode](https://github.com/mynodebtc/mynode) - [Start9](https://github.com/Start9Labs/embassy-os) - -## Manual Installation +**We highly recommend you deploy your own Mempool instance this way.** No matter which option you pick, you'll be able to get your own fully-sovereign instance of Mempool up quickly without needing to fiddle with any settings. -The following instructions are for a manual installation on Linux or FreeBSD. You may need to change file and directory paths to match your OS. +## Advanced Installation Methods -You will need [Bitcoin Core](https://github.com/bitcoin/bitcoin), [Electrum Server](https://github.com/romanz/electrs), [Node.js](https://github.com/nodejs/node), [MariaDB](https://github.com/mariadb/server), and [Nginx](https://github.com/nginx/nginx). Below, we walk through how to configure each of these. +Mempool can be installed in other ways too, but we only recommend doing so if you're a developer, have experience managing servers, or otherwise know what you're doing. -### 1. Get Latest Mempool Release - -Clone the Mempool repo, and checkout the latest release tag: - -```bash -git clone https://github.com/mempool/mempool -cd mempool -latestrelease=$(curl -s https://api.github.com/repos/mempool/mempool/releases/latest|grep tag_name|head -1|cut -d '"' -f4) -git checkout $latestrelease -``` - -### 2. Configure Bitcoin Core - -Enable RPC and txindex in `bitcoin.conf`: - -```bash -rpcuser=mempool -rpcpassword=mempool -txindex=1 -``` - -### 3. Get & Configure MySQL - -Install MariaDB from your OS package manager: - -```bash -# Debian, Ubuntu, etc. -apt-get install mariadb-server mariadb-client - -# macOS -brew install mariadb -mysql.server start -``` - -Create a database and grant privileges: - -```bash -MariaDB [(none)]> drop database mempool; -Query OK, 0 rows affected (0.00 sec) - -MariaDB [(none)]> create database mempool; -Query OK, 1 row affected (0.00 sec) - -MariaDB [(none)]> grant all privileges on mempool.* to 'mempool'@'%' identified by 'mempool'; -Query OK, 0 rows affected (0.00 sec) -``` - -### 4. Build Mempool Backend - -Install Mempool dependencies with npm and build the backend: - -```bash -cd backend -npm install --prod -npm run build -``` - -In the `backend` folder, make a copy of the sample config: - -```bash -cp mempool-config.sample.json mempool-config.json -``` - -Edit `mempool-config.json` with your Bitcoin Core node RPC credentials: - -```bash -{ - "MEMPOOL": { - "NETWORK": "mainnet", - "BACKEND": "electrum", - "HTTP_PORT": 8999 - }, - "CORE_RPC": { - "HOST": "127.0.0.1", - "PORT": 8332, - "USERNAME": "mempool", - "PASSWORD": "mempool" - }, - "ELECTRUM": { - "HOST": "127.0.0.1", - "PORT": 50002, - "TLS_ENABLED": true - }, - "DATABASE": { - "ENABLED": true, - "HOST": "127.0.0.1", - "PORT": 3306, - "USERNAME": "mempool", - "PASSWORD": "mempool", - "DATABASE": "mempool" - } -} -``` - -Start the backend: - -```bash -npm run start -``` - -When it's running, you should see output like this: - -```bash -Mempool updated in 0.189 seconds -Updating mempool -Mempool updated in 0.096 seconds -Updating mempool -Mempool updated in 0.099 seconds -Updating mempool -Calculated fee for transaction 1 / 10 -Calculated fee for transaction 2 / 10 -Calculated fee for transaction 3 / 10 -Calculated fee for transaction 4 / 10 -Calculated fee for transaction 5 / 10 -Calculated fee for transaction 6 / 10 -Calculated fee for transaction 7 / 10 -Calculated fee for transaction 8 / 10 -Calculated fee for transaction 9 / 10 -Calculated fee for transaction 10 / 10 -Mempool updated in 0.243 seconds -Updating mempool -``` - -### 5. Build Mempool Frontend - -Install the Mempool dependencies with npm and build the frontend: - -```bash -cd frontend -npm install --prod -npm run build -``` - -Install the output into the nginx webroot folder: - -```bash -sudo rsync -av --delete dist/ /var/www/ -``` - -### 6. `nginx` + `certbot` - -Install the supplied `nginx.conf` and `nginx-mempool.conf` in `/etc/nginx`: - -```bash -# install nginx and certbot -apt-get install -y nginx python3-certbot-nginx - -# install the mempool configuration for nginx -cp nginx.conf nginx-mempool.conf /etc/nginx/ - -# replace example.com with your domain name -certbot --nginx -d example.com -``` - -If everything went well, you should see the beautiful mempool :grin: - -If you get stuck on "loading blocks", this means the websocket can't connect. Check your nginx proxy setup, firewalls, etc. and open an issue if you need help. +- See the [`docker/`](./docker/) directory for instructions on deploying Mempool with Docker. +- See the [`backend/`](./backend/) and [`frontend/`](./frontend/) directories for manual install instructions oriented for developers and small-scale deployments. +- See the [`production/`](./production/) directory for guidance on setting up a more serious Mempool instance designed for high performance at scale. \ No newline at end of file From 7a51572082ff118cbb8662ad8cab0e34b6705d77 Mon Sep 17 00:00:00 2001 From: softsimon Date: Tue, 24 May 2022 13:48:45 +0400 Subject: [PATCH 03/19] NgBootstrap library import optimization --- frontend/src/app/bisq/bisq.module.ts | 2 -- frontend/src/app/shared/shared.module.ts | 21 +++++++++------------ 2 files changed, 9 insertions(+), 14 deletions(-) diff --git a/frontend/src/app/bisq/bisq.module.ts b/frontend/src/app/bisq/bisq.module.ts index 34c09f971..ebb9c3ee6 100644 --- a/frontend/src/app/bisq/bisq.module.ts +++ b/frontend/src/app/bisq/bisq.module.ts @@ -7,7 +7,6 @@ import { LightweightChartsComponent } from './lightweight-charts/lightweight-cha import { LightweightChartsAreaComponent } from './lightweight-charts-area/lightweight-charts-area.component'; import { BisqMarketComponent } from './bisq-market/bisq-market.component'; import { BisqTransactionsComponent } from './bisq-transactions/bisq-transactions.component'; -import { NgbPaginationModule } from '@ng-bootstrap/ng-bootstrap'; import { BisqTransactionComponent } from './bisq-transaction/bisq-transaction.component'; import { BisqBlockComponent } from './bisq-block/bisq-block.component'; import { BisqDashboardComponent } from './bisq-dashboard/bisq-dashboard.component'; @@ -50,7 +49,6 @@ import { CommonModule } from '@angular/common'; CommonModule, BisqRoutingModule, SharedModule, - NgbPaginationModule, FontAwesomeModule, NgxBootstrapMultiselectModule, ], diff --git a/frontend/src/app/shared/shared.module.ts b/frontend/src/app/shared/shared.module.ts index eb0bf5b87..c7ae8711e 100644 --- a/frontend/src/app/shared/shared.module.ts +++ b/frontend/src/app/shared/shared.module.ts @@ -1,7 +1,6 @@ import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; -import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; -import { NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; +import { NgbCollapse, NgbCollapseModule, NgbRadioGroup, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; import { FontAwesomeModule, FaIconLibrary } from '@fortawesome/angular-fontawesome'; import { faFilter, faAngleDown, faAngleUp, faAngleRight, faAngleLeft, faBolt, faChartArea, faCogs, faCubes, faHammer, faDatabase, faExchangeAlt, faInfoCircle, faLink, faList, faSearch, faCaretUp, faCaretDown, faTachometerAlt, faThList, faTint, faTv, faAngleDoubleDown, faSortUp, faAngleDoubleUp, faChevronDown, @@ -146,11 +145,10 @@ import { IndexingProgressComponent } from '../components/indexing-progress/index NgbTooltipModule, NgbButtonsModule, NgbPaginationModule, - NgbDropdownModule, - NgbAccordionModule, - InfiniteScrollModule, NgbTypeaheadModule, - NgbModule, + NgbDropdownModule, + NgbCollapseModule, + InfiniteScrollModule, FontAwesomeModule, ], providers: [ @@ -162,17 +160,16 @@ import { IndexingProgressComponent } from '../components/indexing-progress/index ], exports: [ RouterModule, - InfiniteScrollModule, - NgbTypeaheadModule, - NgbModule, - FontAwesomeModule, - NgbAccordionModule, - NgbNavModule, ReactiveFormsModule, + NgbNavModule, NgbTooltipModule, NgbButtonsModule, NgbPaginationModule, + NgbTypeaheadModule, NgbDropdownModule, + NgbCollapseModule, + InfiniteScrollModule, + FontAwesomeModule, TimeSinceComponent, TimeUntilComponent, ClipboardComponent, From 36f56de4f1c816da6ca26b94a8ee99abaa4bcd13 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 21 May 2022 02:07:43 +0400 Subject: [PATCH 04/19] Liquid UX fixes fixes #1683 fixes #1681 --- frontend/src/app/components/block/block.component.html | 2 +- .../src/app/components/statistics/statistics.component.html | 3 +-- .../src/app/components/statistics/statistics.component.scss | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index 07ac76c21..00fc18f2a 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -114,7 +114,7 @@ - + Miner -
+
- - - From e5470b9e40a7c428f0ceab45078c18739aeec64e Mon Sep 17 00:00:00 2001 From: softsimon Date: Thu, 26 May 2022 18:31:11 +0400 Subject: [PATCH 08/19] Angular 13.3.10 update --- frontend/package-lock.json | 1433 ++++++++++++++++++++---------------- frontend/package.json | 38 +- 2 files changed, 807 insertions(+), 664 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index dc5f7a01a..248cf41e4 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -9,26 +9,26 @@ "version": "2.4.0-dev", "license": "GNU Affero General Public License v3.0", "dependencies": { - "@angular-devkit/build-angular": "^13.3.4", - "@angular/animations": "~13.3.5", - "@angular/cli": "~13.3.4", - "@angular/common": "~13.3.5", - "@angular/compiler": "~13.3.5", - "@angular/core": "~13.3.5", - "@angular/forms": "~13.3.5", - "@angular/localize": "^13.3.5", - "@angular/platform-browser": "~13.3.5", - "@angular/platform-browser-dynamic": "~13.3.5", - "@angular/platform-server": "~13.3.5", - "@angular/router": "~13.3.5", - "@fortawesome/angular-fontawesome": "0.10.1", - "@fortawesome/fontawesome-common-types": "0.3.0", - "@fortawesome/fontawesome-svg-core": "1.3.0", - "@fortawesome/free-solid-svg-icons": "6.0.0", + "@angular-devkit/build-angular": "~13.3.7", + "@angular/animations": "~13.3.10", + "@angular/cli": "~13.3.7", + "@angular/common": "~13.3.10", + "@angular/compiler": "~13.3.10", + "@angular/core": "~13.3.10", + "@angular/forms": "~13.3.10", + "@angular/localize": "~13.3.10", + "@angular/platform-browser": "~13.3.10", + "@angular/platform-browser-dynamic": "~13.3.10", + "@angular/platform-server": "~13.3.10", + "@angular/router": "~13.3.10", + "@fortawesome/angular-fontawesome": "~0.10.1", + "@fortawesome/fontawesome-common-types": "~0.3.0", + "@fortawesome/fontawesome-svg-core": "~1.3.0", + "@fortawesome/free-solid-svg-icons": "~6.0.0", "@juggle/resize-observer": "^3.3.1", "@mempool/mempool.js": "2.3.0", "@ng-bootstrap/ng-bootstrap": "^11.0.0", - "@nguniversal/express-engine": "12.1.3", + "@nguniversal/express-engine": "~13.1.1", "@types/qrcode": "~1.4.2", "bootstrap": "~4.5.0", "browserify": "^17.0.0", @@ -48,8 +48,8 @@ "zone.js": "~0.11.4" }, "devDependencies": { - "@angular/compiler-cli": "~13.3.5", - "@angular/language-service": "~13.3.5", + "@angular/compiler-cli": "~13.3.10", + "@angular/language-service": "~13.3.10", "@nguniversal/builders": "~13.1.0", "@types/express": "^4.17.0", "@types/jasmine": "~3.6.0", @@ -78,23 +78,23 @@ } }, "node_modules/@ampproject/remapping": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-1.1.1.tgz", - "integrity": "sha512-YVAcA4DKLOj296CF5SrQ8cYiMRiUGc2sqFpLxsDGWE34suHqhGP/5yMsDHKsrh8hs8I5TiRVXNwKPWQpX3iGjw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "sourcemap-codec": "1.4.8" + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@angular-devkit/architect": { - "version": "0.1303.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.4.tgz", - "integrity": "sha512-d6YmIWdYvwk6WaknHRcJgiXeJvX9K5i8uPMAaL2P2/LU8n3moIQ59C7SP0uULcHuuiREEmFWOyyrWnGxZCI9bg==", + "version": "0.1303.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.7.tgz", + "integrity": "sha512-xr35v7AuJygRdiaFhgoBSLN2ZMUri8x8Qx9jkmCkD3WLKz33TSFyAyqwdNNmOO9riK8ePXMH/QcSv0wY12pFBw==", "dependencies": { - "@angular-devkit/core": "13.3.4", + "@angular-devkit/core": "13.3.7", "rxjs": "6.6.7" }, "engines": { @@ -104,14 +104,14 @@ } }, "node_modules/@angular-devkit/build-angular": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-13.3.4.tgz", - "integrity": "sha512-z74cmDi2V+5XpvyZKFlUXxvQ446shxyZk5aGdToG6n+0/IJWkDXSiryQkCo8nblGMze7HKf75i3DsGWYQZLDnQ==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-13.3.7.tgz", + "integrity": "sha512-XUmiq/3zpuna+r0UOqNSvA9kEcPwsLblEmNLUYyZXL9v/aGWUHOSH0nhGVrNRrSud4ryklEnxfkxkxlZlT4mjQ==", "dependencies": { - "@ampproject/remapping": "1.1.1", - "@angular-devkit/architect": "0.1303.4", - "@angular-devkit/build-webpack": "0.1303.4", - "@angular-devkit/core": "13.3.4", + "@ampproject/remapping": "2.2.0", + "@angular-devkit/architect": "0.1303.7", + "@angular-devkit/build-webpack": "0.1303.7", + "@angular-devkit/core": "13.3.7", "@babel/core": "7.16.12", "@babel/generator": "7.16.8", "@babel/helper-annotate-as-pure": "7.16.7", @@ -122,9 +122,9 @@ "@babel/runtime": "7.16.7", "@babel/template": "7.16.7", "@discoveryjs/json-ext": "0.5.6", - "@ngtools/webpack": "13.3.4", + "@ngtools/webpack": "13.3.7", "ansi-colors": "4.1.1", - "babel-loader": "8.2.3", + "babel-loader": "8.2.5", "babel-plugin-istanbul": "6.1.1", "browserslist": "^4.9.1", "cacache": "15.3.0", @@ -212,72 +212,6 @@ } } }, - "node_modules/@angular-devkit/build-angular/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@angular-devkit/build-angular/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@angular-devkit/build-angular/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@angular-devkit/build-angular/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@angular-devkit/build-angular/node_modules/critters": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", - "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", - "dependencies": { - "chalk": "^4.1.0", - "css-select": "^4.2.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "postcss": "^8.3.7", - "pretty-bytes": "^5.3.0" - } - }, - "node_modules/@angular-devkit/build-angular/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/@angular-devkit/build-angular/node_modules/loader-utils": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz", @@ -286,23 +220,12 @@ "node": ">= 12.13.0" } }, - "node_modules/@angular-devkit/build-angular/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@angular-devkit/build-webpack": { - "version": "0.1303.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1303.4.tgz", - "integrity": "sha512-3F10P9XshRXkI/PEmJUcgP4yK4sobaoInQfifzPNOemrS5nXs8y3uEiQuxzyswYx/dymZLV+19sV/eh1WfXnBA==", + "version": "0.1303.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1303.7.tgz", + "integrity": "sha512-5vF399cPdwuCbzbxS4yNGgChdAzEM0/By21P0uiqBcIe/Zxuz3IUPapjvcyhkAo5OTu+d7smY9eusLHqoq1WFQ==", "dependencies": { - "@angular-devkit/architect": "0.1303.4", + "@angular-devkit/architect": "0.1303.7", "rxjs": "6.6.7" }, "engines": { @@ -316,9 +239,9 @@ } }, "node_modules/@angular-devkit/core": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.4.tgz", - "integrity": "sha512-gj6i8ksPaT2bvYwI7wKJxLX53pHfTmZc1RaNbAGfZB1/zFNnb3MPj8utTcJSk4qMsGXuDDhiB7hpTKBw8ROaGA==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.7.tgz", + "integrity": "sha512-Ucy4bJmlgCoBenuVeGMdtW9dE8+cD+guWCgqexsFIG21KJ/l0ShZEZ/dGC1XibzaIs1HbKiTr/T1MOjInCV1rA==", "dependencies": { "ajv": "8.9.0", "ajv-formats": "2.1.1", @@ -452,9 +375,9 @@ "optional": true }, "node_modules/@angular/animations": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-13.3.5.tgz", - "integrity": "sha512-BYXX80N1hxkATWqv2IZddfKvqxomktxH5fREv+KjwIYFkyK9KBnRBILqynyIJaXXut5KE6QNOf1zWEZxdOnc3A==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-13.3.10.tgz", + "integrity": "sha512-V/0h3xepWPBRjWroFXYrNIE3iZPREjv0hiB3gskF/2KLlx5jvpUWlaBx0rEYRa8XXIPJyAaKBGwWSBnT/Z88TQ==", "dependencies": { "tslib": "^2.3.0" }, @@ -462,19 +385,19 @@ "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/core": "13.3.5" + "@angular/core": "13.3.10" } }, "node_modules/@angular/cli": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-13.3.4.tgz", - "integrity": "sha512-4S5FNjkZgq98zcBVgwkYtMgMRMSVsprCgq7dM8yTxIQh+Np3fYgj5eRJ1+mfFG/kankH2z/TFyuoYiILh2D9Uw==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-13.3.7.tgz", + "integrity": "sha512-XIp0w0YOwhHp4Je3npHAs0W4rjHvFnG2w/lDO2M/UNp5634S4PRMFmVVMt6DQBj1cbffYVKFqffqesyCqNuvAQ==", "hasInstallScript": true, "dependencies": { - "@angular-devkit/architect": "0.1303.4", - "@angular-devkit/core": "13.3.4", - "@angular-devkit/schematics": "13.3.4", - "@schematics/angular": "13.3.4", + "@angular-devkit/architect": "0.1303.7", + "@angular-devkit/core": "13.3.7", + "@angular-devkit/schematics": "13.3.7", + "@schematics/angular": "13.3.7", "@yarnpkg/lockfile": "1.1.0", "ansi-colors": "4.1.1", "debug": "4.3.3", @@ -501,11 +424,11 @@ } }, "node_modules/@angular/cli/node_modules/@angular-devkit/schematics": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.4.tgz", - "integrity": "sha512-gKNpMMoZJjLKdXxjuVembic4GWa4AYV7kU1ou3ZuZoDKtKcig9URISr1wjS+nrhKYz+miFy0zIqSGMMattDlDQ==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.7.tgz", + "integrity": "sha512-6TKpFMwiiXmPhiVdbkSJrkBXj8n7SVVhsHl2GodDLVTb8OT3fxYIB9EU8Il07AMfDcjpydOcJduCFPOsQYd7BA==", "dependencies": { - "@angular-devkit/core": "13.3.4", + "@angular-devkit/core": "13.3.7", "jsonc-parser": "3.0.0", "magic-string": "0.25.7", "ora": "5.4.1", @@ -518,12 +441,12 @@ } }, "node_modules/@angular/cli/node_modules/@schematics/angular": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.4.tgz", - "integrity": "sha512-Cta11k965Igz2kWj60KQ/9z6RFAg9FjZ8i1TH4nyROJs9nWemWPQNA+OJFuXrEy6Ldpk7yJ5cWgJsyryGB25PA==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.7.tgz", + "integrity": "sha512-OAny1e/yliku52xG7vfWs1hNYSgCNTPpMv9fS8zz9eF5/GrKv28WFSy20mUXqLZ91VsbGSs6X0mI6pdNnpVtJA==", "dependencies": { - "@angular-devkit/core": "13.3.4", - "@angular-devkit/schematics": "13.3.4", + "@angular-devkit/core": "13.3.7", + "@angular-devkit/schematics": "13.3.7", "jsonc-parser": "3.0.0" }, "engines": { @@ -557,9 +480,9 @@ } }, "node_modules/@angular/common": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.5.tgz", - "integrity": "sha512-teG+itdlw2sOMwYeXkeFe8h32SsNqN0qHHz/v6I9qKHgCLkC/or8A7NtsoCwYSTymIEJJ7DZ1w9VWhM7DSYd1w==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.10.tgz", + "integrity": "sha512-KWw91QzmCDZ6uq1Z58v7vQQ57Ux7A2UkPdIBOyvpOgtQPTvlvKsePkUVCC+dum+W9mOy4kq2falO5T7Gi7SJgw==", "dependencies": { "tslib": "^2.3.0" }, @@ -567,14 +490,14 @@ "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/core": "13.3.5", + "@angular/core": "13.3.10", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/compiler": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.5.tgz", - "integrity": "sha512-iSQlYevMk5glwZSXTXf2GytykqZWdK3Rr8heIvEPqd8n88MSB3w1KnDc1fnHLF950q/nUR9K+3r4wWPwc8J2IQ==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.10.tgz", + "integrity": "sha512-DEtdso89Q9lAGkSVpSf2GrMtGVTnCnenCwLhubYaeSaj4iA/CAnUfNlaYBf9E92ltuPd85Mg9bIJKaxYCRH8RQ==", "dependencies": { "tslib": "^2.3.0" }, @@ -583,9 +506,9 @@ } }, "node_modules/@angular/compiler-cli": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.5.tgz", - "integrity": "sha512-H7A+MZcbB4g5fa6O4giYgrCG1h5whJfIxr4txDtDfolygzwRzqH1PSMfjW/jYyIpaH6XqXMSDHvbXRFGKstboA==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.10.tgz", + "integrity": "sha512-cGFQyUOxOLVnehczdP4L7KXbKQTe/aQgbXmacQYgqcP/AnpJs7QfZbw1/k1wJtXrhzbGBh3JSWnpme74bnF3dQ==", "dependencies": { "@babel/core": "^7.17.2", "chokidar": "^3.0.0", @@ -607,22 +530,10 @@ "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/compiler": "13.3.5", + "@angular/compiler": "13.3.10", "typescript": ">=4.4.2 <4.7" } }, - "node_modules/@angular/compiler-cli/node_modules/@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@angular/compiler-cli/node_modules/@babel/core": { "version": "7.17.9", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.9.tgz", @@ -782,9 +693,9 @@ } }, "node_modules/@angular/core": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.5.tgz", - "integrity": "sha512-lf+Be8dDRvz8J+QFR2RxS3BBfgGM4eWq4bI1+k/aqDnM6OW4pQXdq8Lzae8SxN48u1NxB1M/1bbc9LcrChrj2Q==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.10.tgz", + "integrity": "sha512-7jH1a5wZdE6Ki2Dow7s6v1/5SfUcXsjAu3n523QSDlM078QG0p95npcqPseO9mNftG9MfRqBE7sl1Nb+ZK7eBg==", "dependencies": { "tslib": "^2.3.0" }, @@ -797,9 +708,9 @@ } }, "node_modules/@angular/forms": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-13.3.5.tgz", - "integrity": "sha512-jCxxAwf4HkDmKE76/yQmTsbqW3jsxiKyPy32Nh6Bt4r/ww8VDv+sv5YdYNuvvZcuuQ70K+/EPnKFpQgYttvS8A==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-13.3.10.tgz", + "integrity": "sha512-2cREi8nvCdspYHk6KJ5xjIgq8Dgh/kfwPIVjpLQBZFNC03Q6GvOLVoVm8ye6ToOpQFjvjpjndqU93JXSLMANgA==", "dependencies": { "tslib": "^2.3.0" }, @@ -807,25 +718,25 @@ "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/common": "13.3.5", - "@angular/core": "13.3.5", - "@angular/platform-browser": "13.3.5", + "@angular/common": "13.3.10", + "@angular/core": "13.3.10", + "@angular/platform-browser": "13.3.10", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/language-service": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-13.3.5.tgz", - "integrity": "sha512-IJawCyu4Zwk6GNPDkbSkY6sFYaBHtaHMwhaiRojrqiKA0n2bDNULLcHfYGSyA7UvkX8m9Nt0M5GaF66BIwuZSw==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-13.3.10.tgz", + "integrity": "sha512-TQwVIEFTWOlX9Jy2PhOT52Eo3ApNWSkjQavAuIU4uNQRCyoKMTywJ6MlQiQlMoWPH77Yn5EZyCwRoWFVWg3q0w==", "dev": true, "engines": { "node": "^12.20.0 || ^14.15.0 || >=16.10.0" } }, "node_modules/@angular/localize": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/localize/-/localize-13.3.5.tgz", - "integrity": "sha512-0MmGvQSBZeKwsOBATWp7Y5rxyGW6OaszLtecKu32VVJSjoDN4M6uMHBMjVVe4IxbyJnbhlSPRSYL9hRFbOve0A==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/localize/-/localize-13.3.10.tgz", + "integrity": "sha512-DNSOLJd8SkYHWKWyBm/piYnjurYRsgXTmWoVXTrfEuALEHxz3cwnVUPvoiWwJVMKklFr76D61pDY4mz5muPxog==", "dependencies": { "@babel/core": "7.17.2", "glob": "7.2.0", @@ -840,20 +751,8 @@ "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/compiler": "13.3.5", - "@angular/compiler-cli": "13.3.5" - } - }, - "node_modules/@angular/localize/node_modules/@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" + "@angular/compiler": "13.3.10", + "@angular/compiler-cli": "13.3.10" } }, "node_modules/@angular/localize/node_modules/@babel/core": { @@ -1004,9 +903,9 @@ } }, "node_modules/@angular/platform-browser": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.5.tgz", - "integrity": "sha512-DPV1J3h1ua4GI9PuXDr8IlzJoC/TR0A/onPTaE6IFOzs1r28vB+vWRRbZURXrTYeWzWVB/2R9tPOqFNoi3zlzA==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.10.tgz", + "integrity": "sha512-zi0FrA8zZRiHLBfKlfIxikG06wMF2KcSp6oqrIblrc1VrHgPRVRABz8vryH84lasDssjYdIS9AvbQnCCdgCzJA==", "dependencies": { "tslib": "^2.3.0" }, @@ -1014,9 +913,9 @@ "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/animations": "13.3.5", - "@angular/common": "13.3.5", - "@angular/core": "13.3.5" + "@angular/animations": "13.3.10", + "@angular/common": "13.3.10", + "@angular/core": "13.3.10" }, "peerDependenciesMeta": { "@angular/animations": { @@ -1025,9 +924,9 @@ } }, "node_modules/@angular/platform-browser-dynamic": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-13.3.5.tgz", - "integrity": "sha512-Mko8/mRlcVsZJQ5zHfc/p7so/ZN16UMynTnksrD7cEgGxDuJosE8m+exqgoT03VCYaOjJtCFXSwdOb/8FOUDZQ==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-13.3.10.tgz", + "integrity": "sha512-hygsEjTaS+VDUrBZZiRJFo5J7AHCS/EcAc1IWvb69EnVqA9RwqM4hWbuy3y/cmLEeHLLmRldIlS6xRPt8fTNQg==", "dependencies": { "tslib": "^2.3.0" }, @@ -1035,16 +934,16 @@ "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/common": "13.3.5", - "@angular/compiler": "13.3.5", - "@angular/core": "13.3.5", - "@angular/platform-browser": "13.3.5" + "@angular/common": "13.3.10", + "@angular/compiler": "13.3.10", + "@angular/core": "13.3.10", + "@angular/platform-browser": "13.3.10" } }, "node_modules/@angular/platform-server": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/platform-server/-/platform-server-13.3.5.tgz", - "integrity": "sha512-ja9/mgBIAriQO3H9Q1MTXxJV1s59a2NJeeOffGHr86TLDcaxxzumozfoaKr5p6m0Ty3yqZcFc3wUQJl5I/1H0A==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/platform-server/-/platform-server-13.3.10.tgz", + "integrity": "sha512-KekOeqzdL9tL9h7bDuYoz1utnd6p6y6qAvAvCGm2Qa1fX3f/NQQ12pngtVqhvIgB5PpROCNypla/ejcBmNsQ2g==", "dependencies": { "domino": "^2.1.2", "tslib": "^2.3.0", @@ -1054,18 +953,18 @@ "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/animations": "13.3.5", - "@angular/common": "13.3.5", - "@angular/compiler": "13.3.5", - "@angular/core": "13.3.5", - "@angular/platform-browser": "13.3.5", - "@angular/platform-browser-dynamic": "13.3.5" + "@angular/animations": "13.3.10", + "@angular/common": "13.3.10", + "@angular/compiler": "13.3.10", + "@angular/core": "13.3.10", + "@angular/platform-browser": "13.3.10", + "@angular/platform-browser-dynamic": "13.3.10" } }, "node_modules/@angular/router": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-13.3.5.tgz", - "integrity": "sha512-3yUNyBpUi0KUKP91a3dVQsr9Jfjs4wGxpiFYb3apc7lKT5R1LJqt2O0EchjOgvFyJ6TDOemdCAzKgvSRkDxpMw==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-13.3.10.tgz", + "integrity": "sha512-neGaeiHravXlCbNbyGJecwQyu/91Pj/E9/ohVFzBBE4V9BrNx9v7Ntc4ugqgpnrV2wtonPP7TQDqXxrPk4QVfg==", "dependencies": { "tslib": "^2.3.0" }, @@ -1073,9 +972,9 @@ "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/common": "13.3.5", - "@angular/core": "13.3.5", - "@angular/platform-browser": "13.3.5", + "@angular/common": "13.3.10", + "@angular/core": "13.3.10", + "@angular/platform-browser": "13.3.10", "rxjs": "^6.5.3 || ^7.4.0" } }, @@ -3096,9 +2995,9 @@ } }, "node_modules/@ngtools/webpack": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-13.3.4.tgz", - "integrity": "sha512-dNDNeAOwtpX5A7TTEsgDbkg4jTmAJHD96qLqcpJqfBg8nZ4mqn6E0HinX9HZKaCST1/75T6GsFo1Muc4MsHYgA==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-13.3.7.tgz", + "integrity": "sha512-KtNMHOGZIU2oaNTzk97ZNwTnJLbvnSpwyG3/+VW9xN92b2yw8gG9tHPKW2fsFrfzF9Mz8kqJeF31ftvkYuKtuA==", "engines": { "node": "^12.20.0 || ^14.15.0 || >=16.10.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", @@ -3212,69 +3111,6 @@ "node": ">=0.4.0" } }, - "node_modules/@nguniversal/common/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@nguniversal/common/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@nguniversal/common/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@nguniversal/common/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@nguniversal/common/node_modules/critters": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", - "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "css-select": "^4.2.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "postcss": "^8.3.7", - "pretty-bytes": "^5.3.0" - } - }, "node_modules/@nguniversal/common/node_modules/cssom": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", @@ -3365,15 +3201,6 @@ "node": ">= 6" } }, - "node_modules/@nguniversal/common/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/@nguniversal/common/node_modules/html-encoding-sniffer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", @@ -3468,18 +3295,6 @@ "node": ">=0.10.0" } }, - "node_modules/@nguniversal/common/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@nguniversal/common/node_modules/tr46": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", @@ -3578,38 +3393,318 @@ } }, "node_modules/@nguniversal/express-engine": { - "version": "12.1.3", - "resolved": "https://registry.npmjs.org/@nguniversal/express-engine/-/express-engine-12.1.3.tgz", - "integrity": "sha512-iu/7Al3NjwdwJw3ALyW9n7MzAQ75/Ca/cd2xWi7rzgvev2pgakZfvn2/EbB8oFI6xOSvA2irA29BeobkR4crlw==", + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/@nguniversal/express-engine/-/express-engine-13.1.1.tgz", + "integrity": "sha512-NdiBP0IRbPrNYEMLy3a6os2mNgRNE84tsMn+mV2uF4wv1JNs3YyoXcucWvhgHdODbDtc6z4CGn8t/6KagRqmvA==", "dependencies": { - "@nguniversal/common": "12.1.3", + "@nguniversal/common": "13.1.1", "tslib": "^2.3.0" }, "engines": { - "node": ">=12.13.0" + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/common": "^12.2.12", - "@angular/core": "^12.2.12", - "@angular/platform-server": "^12.2.12", + "@angular/common": "^13.3.4", + "@angular/core": "^13.3.4", + "@angular/platform-server": "^13.3.4", "express": "^4.15.2" } }, "node_modules/@nguniversal/express-engine/node_modules/@nguniversal/common": { - "version": "12.1.3", - "resolved": "https://registry.npmjs.org/@nguniversal/common/-/common-12.1.3.tgz", - "integrity": "sha512-0fP8ThHx3vePJxTdic5cz9hvWnqB2Uvx2uf1JQ68zto8ZXrasOeB8kT+ujhuUIyH8AR98BYMudMXCVvq+UbkeA==", + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/@nguniversal/common/-/common-13.1.1.tgz", + "integrity": "sha512-DoAPA7+kUz+qMgCTUtRPFcMGY0zz8OSkOTZnxqO5sUYntD6mCEQImHU0WF4ud88j71o0Hv+AISJD1evAAANCdw==", "dependencies": { - "critters": "0.0.12", - "jsdom": "16.6.0", + "critters": "0.0.16", + "jsdom": "19.0.0", "tslib": "^2.3.0" }, "engines": { - "node": ">=12.13.0" + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/common": "^12.2.12", - "@angular/core": "^12.2.12" + "@angular/common": "^13.3.4", + "@angular/core": "^13.3.4" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + }, + "node_modules/@nguniversal/express-engine/node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/data-urls/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/jsdom": { + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-19.0.0.tgz", + "integrity": "sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.5.0", + "acorn-globals": "^6.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.1", + "decimal.js": "^10.3.1", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^3.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^10.0.0", + "ws": "^8.2.3", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/@nguniversal/express-engine/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/w3c-xmlserializer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz", + "integrity": "sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==", + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "engines": { + "node": ">=12" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "engines": { + "node": ">=12" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/whatwg-url": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-10.0.0.tgz", + "integrity": "sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@nguniversal/express-engine/node_modules/ws": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.6.0.tgz", + "integrity": "sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/@nguniversal/express-engine/node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "engines": { + "node": ">=12" } }, "node_modules/@nodelib/fs.scandir": { @@ -4867,12 +4962,12 @@ } }, "node_modules/babel-loader": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz", - "integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==", + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", + "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", "dependencies": { "find-cache-dir": "^3.3.1", - "loader-utils": "^1.4.0", + "loader-utils": "^2.0.0", "make-dir": "^3.1.0", "schema-utils": "^2.6.5" }, @@ -4884,30 +4979,6 @@ "webpack": ">=2" } }, - "node_modules/babel-loader/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/babel-loader/node_modules/loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, "node_modules/babel-plugin-dynamic-import-node": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", @@ -5145,7 +5216,7 @@ "node_modules/bonjour": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", "dependencies": { "array-flatten": "^2.1.0", "deep-equal": "^1.0.1", @@ -6314,7 +6385,7 @@ "node_modules/commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" }, "node_modules/component-emitter": { "version": "1.3.0", @@ -6353,7 +6424,7 @@ "node_modules/compression/node_modules/bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "engines": { "node": ">= 0.8" } @@ -6702,12 +6773,12 @@ } }, "node_modules/critters": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.12.tgz", - "integrity": "sha512-ujxKtKc/mWpjrOKeaACTaQ1aP0O31M0ZPWhfl85jZF1smPU4Ivb9va5Ox2poif4zVJQQo0LCFlzGtEZAsCAPcw==", + "version": "0.0.16", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", + "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", "dependencies": { "chalk": "^4.1.0", - "css-select": "^4.1.3", + "css-select": "^4.2.0", "parse5": "^6.0.1", "parse5-htmlparser2-tree-adapter": "^6.0.1", "postcss": "^8.3.7", @@ -6981,7 +7052,8 @@ "node_modules/cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true }, "node_modules/cssstyle": { "version": "2.3.0", @@ -7274,6 +7346,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dev": true, "dependencies": { "abab": "^2.0.3", "whatwg-mimetype": "^2.3.0", @@ -7414,9 +7487,9 @@ "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" }, "node_modules/del": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", - "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", "dependencies": { "globby": "^11.0.1", "graceful-fs": "^4.2.4", @@ -7687,6 +7760,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dev": true, "dependencies": { "webidl-conversions": "^5.0.0" }, @@ -7698,6 +7772,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true, "engines": { "node": ">=8" } @@ -9689,6 +9764,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, "dependencies": { "whatwg-encoding": "^1.0.5" }, @@ -10632,6 +10708,7 @@ "version": "16.6.0", "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.6.0.tgz", "integrity": "sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg==", + "dev": true, "dependencies": { "abab": "^2.0.5", "acorn": "^8.2.4", @@ -10677,6 +10754,7 @@ "version": "8.7.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", + "dev": true, "bin": { "acorn": "bin/acorn" }, @@ -10688,6 +10766,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dev": true, "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", @@ -10709,6 +10788,7 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, "engines": { "node": ">=4.0" } @@ -10717,6 +10797,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -10730,6 +10811,7 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "optional": true, "engines": { "node": ">=0.10.0" @@ -11720,9 +11802,9 @@ } }, "node_modules/memfs": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz", - "integrity": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.3.tgz", + "integrity": "sha512-eivjfi7Ahr6eQTn44nvTnR60e4a1Fs1Via2kCR5lHo/kyNoiMWaXCNJ/GpSd0ilXas2JSOl9B5FTIhflXu0hlg==", "dependencies": { "fs-monkey": "1.0.3" }, @@ -15887,6 +15969,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, "dependencies": { "punycode": "^2.1.1" }, @@ -16432,6 +16515,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, "dependencies": { "xml-name-validator": "^3.0.0" }, @@ -16490,6 +16574,7 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true, "engines": { "node": ">=10.4" } @@ -16809,9 +16894,9 @@ } }, "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", - "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.6.0.tgz", + "integrity": "sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==", "engines": { "node": ">=10.0.0" }, @@ -16929,6 +17014,7 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, "dependencies": { "iconv-lite": "0.4.24" } @@ -16936,12 +17022,14 @@ "node_modules/whatwg-mimetype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true }, "node_modules/whatwg-url": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, "dependencies": { "lodash": "^4.7.0", "tr46": "^2.1.0", @@ -17072,6 +17160,7 @@ "version": "7.4.6", "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", + "dev": true, "engines": { "node": ">=8.3.0" } @@ -17087,7 +17176,8 @@ "node_modules/xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true }, "node_modules/xmlchars": { "version": "2.2.0", @@ -17286,32 +17376,32 @@ }, "dependencies": { "@ampproject/remapping": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-1.1.1.tgz", - "integrity": "sha512-YVAcA4DKLOj296CF5SrQ8cYiMRiUGc2sqFpLxsDGWE34suHqhGP/5yMsDHKsrh8hs8I5TiRVXNwKPWQpX3iGjw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "sourcemap-codec": "1.4.8" + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" } }, "@angular-devkit/architect": { - "version": "0.1303.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.4.tgz", - "integrity": "sha512-d6YmIWdYvwk6WaknHRcJgiXeJvX9K5i8uPMAaL2P2/LU8n3moIQ59C7SP0uULcHuuiREEmFWOyyrWnGxZCI9bg==", + "version": "0.1303.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.7.tgz", + "integrity": "sha512-xr35v7AuJygRdiaFhgoBSLN2ZMUri8x8Qx9jkmCkD3WLKz33TSFyAyqwdNNmOO9riK8ePXMH/QcSv0wY12pFBw==", "requires": { - "@angular-devkit/core": "13.3.4", + "@angular-devkit/core": "13.3.7", "rxjs": "6.6.7" } }, "@angular-devkit/build-angular": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-13.3.4.tgz", - "integrity": "sha512-z74cmDi2V+5XpvyZKFlUXxvQ446shxyZk5aGdToG6n+0/IJWkDXSiryQkCo8nblGMze7HKf75i3DsGWYQZLDnQ==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-13.3.7.tgz", + "integrity": "sha512-XUmiq/3zpuna+r0UOqNSvA9kEcPwsLblEmNLUYyZXL9v/aGWUHOSH0nhGVrNRrSud4ryklEnxfkxkxlZlT4mjQ==", "requires": { - "@ampproject/remapping": "1.1.1", - "@angular-devkit/architect": "0.1303.4", - "@angular-devkit/build-webpack": "0.1303.4", - "@angular-devkit/core": "13.3.4", + "@ampproject/remapping": "2.2.0", + "@angular-devkit/architect": "0.1303.7", + "@angular-devkit/build-webpack": "0.1303.7", + "@angular-devkit/core": "13.3.7", "@babel/core": "7.16.12", "@babel/generator": "7.16.8", "@babel/helper-annotate-as-pure": "7.16.7", @@ -17322,9 +17412,9 @@ "@babel/runtime": "7.16.7", "@babel/template": "7.16.7", "@discoveryjs/json-ext": "0.5.6", - "@ngtools/webpack": "13.3.4", + "@ngtools/webpack": "13.3.7", "ansi-colors": "4.1.1", - "babel-loader": "8.2.3", + "babel-loader": "8.2.5", "babel-plugin-istanbul": "6.1.1", "browserslist": "^4.9.1", "cacache": "15.3.0", @@ -17375,82 +17465,26 @@ "webpack-subresource-integrity": "5.1.0" }, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "critters": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", - "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", - "requires": { - "chalk": "^4.1.0", - "css-select": "^4.2.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "postcss": "^8.3.7", - "pretty-bytes": "^5.3.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, "loader-utils": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz", "integrity": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } } } }, "@angular-devkit/build-webpack": { - "version": "0.1303.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1303.4.tgz", - "integrity": "sha512-3F10P9XshRXkI/PEmJUcgP4yK4sobaoInQfifzPNOemrS5nXs8y3uEiQuxzyswYx/dymZLV+19sV/eh1WfXnBA==", + "version": "0.1303.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1303.7.tgz", + "integrity": "sha512-5vF399cPdwuCbzbxS4yNGgChdAzEM0/By21P0uiqBcIe/Zxuz3IUPapjvcyhkAo5OTu+d7smY9eusLHqoq1WFQ==", "requires": { - "@angular-devkit/architect": "0.1303.4", + "@angular-devkit/architect": "0.1303.7", "rxjs": "6.6.7" } }, "@angular-devkit/core": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.4.tgz", - "integrity": "sha512-gj6i8ksPaT2bvYwI7wKJxLX53pHfTmZc1RaNbAGfZB1/zFNnb3MPj8utTcJSk4qMsGXuDDhiB7hpTKBw8ROaGA==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.7.tgz", + "integrity": "sha512-Ucy4bJmlgCoBenuVeGMdtW9dE8+cD+guWCgqexsFIG21KJ/l0ShZEZ/dGC1XibzaIs1HbKiTr/T1MOjInCV1rA==", "requires": { "ajv": "8.9.0", "ajv-formats": "2.1.1", @@ -17541,22 +17575,22 @@ } }, "@angular/animations": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-13.3.5.tgz", - "integrity": "sha512-BYXX80N1hxkATWqv2IZddfKvqxomktxH5fREv+KjwIYFkyK9KBnRBILqynyIJaXXut5KE6QNOf1zWEZxdOnc3A==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-13.3.10.tgz", + "integrity": "sha512-V/0h3xepWPBRjWroFXYrNIE3iZPREjv0hiB3gskF/2KLlx5jvpUWlaBx0rEYRa8XXIPJyAaKBGwWSBnT/Z88TQ==", "requires": { "tslib": "^2.3.0" } }, "@angular/cli": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-13.3.4.tgz", - "integrity": "sha512-4S5FNjkZgq98zcBVgwkYtMgMRMSVsprCgq7dM8yTxIQh+Np3fYgj5eRJ1+mfFG/kankH2z/TFyuoYiILh2D9Uw==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-13.3.7.tgz", + "integrity": "sha512-XIp0w0YOwhHp4Je3npHAs0W4rjHvFnG2w/lDO2M/UNp5634S4PRMFmVVMt6DQBj1cbffYVKFqffqesyCqNuvAQ==", "requires": { - "@angular-devkit/architect": "0.1303.4", - "@angular-devkit/core": "13.3.4", - "@angular-devkit/schematics": "13.3.4", - "@schematics/angular": "13.3.4", + "@angular-devkit/architect": "0.1303.7", + "@angular-devkit/core": "13.3.7", + "@angular-devkit/schematics": "13.3.7", + "@schematics/angular": "13.3.7", "@yarnpkg/lockfile": "1.1.0", "ansi-colors": "4.1.1", "debug": "4.3.3", @@ -17575,11 +17609,11 @@ }, "dependencies": { "@angular-devkit/schematics": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.4.tgz", - "integrity": "sha512-gKNpMMoZJjLKdXxjuVembic4GWa4AYV7kU1ou3ZuZoDKtKcig9URISr1wjS+nrhKYz+miFy0zIqSGMMattDlDQ==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.7.tgz", + "integrity": "sha512-6TKpFMwiiXmPhiVdbkSJrkBXj8n7SVVhsHl2GodDLVTb8OT3fxYIB9EU8Il07AMfDcjpydOcJduCFPOsQYd7BA==", "requires": { - "@angular-devkit/core": "13.3.4", + "@angular-devkit/core": "13.3.7", "jsonc-parser": "3.0.0", "magic-string": "0.25.7", "ora": "5.4.1", @@ -17587,12 +17621,12 @@ } }, "@schematics/angular": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.4.tgz", - "integrity": "sha512-Cta11k965Igz2kWj60KQ/9z6RFAg9FjZ8i1TH4nyROJs9nWemWPQNA+OJFuXrEy6Ldpk7yJ5cWgJsyryGB25PA==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.7.tgz", + "integrity": "sha512-OAny1e/yliku52xG7vfWs1hNYSgCNTPpMv9fS8zz9eF5/GrKv28WFSy20mUXqLZ91VsbGSs6X0mI6pdNnpVtJA==", "requires": { - "@angular-devkit/core": "13.3.4", - "@angular-devkit/schematics": "13.3.4", + "@angular-devkit/core": "13.3.7", + "@angular-devkit/schematics": "13.3.7", "jsonc-parser": "3.0.0" } }, @@ -17612,25 +17646,25 @@ } }, "@angular/common": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.5.tgz", - "integrity": "sha512-teG+itdlw2sOMwYeXkeFe8h32SsNqN0qHHz/v6I9qKHgCLkC/or8A7NtsoCwYSTymIEJJ7DZ1w9VWhM7DSYd1w==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.10.tgz", + "integrity": "sha512-KWw91QzmCDZ6uq1Z58v7vQQ57Ux7A2UkPdIBOyvpOgtQPTvlvKsePkUVCC+dum+W9mOy4kq2falO5T7Gi7SJgw==", "requires": { "tslib": "^2.3.0" } }, "@angular/compiler": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.5.tgz", - "integrity": "sha512-iSQlYevMk5glwZSXTXf2GytykqZWdK3Rr8heIvEPqd8n88MSB3w1KnDc1fnHLF950q/nUR9K+3r4wWPwc8J2IQ==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.10.tgz", + "integrity": "sha512-DEtdso89Q9lAGkSVpSf2GrMtGVTnCnenCwLhubYaeSaj4iA/CAnUfNlaYBf9E92ltuPd85Mg9bIJKaxYCRH8RQ==", "requires": { "tslib": "^2.3.0" } }, "@angular/compiler-cli": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.5.tgz", - "integrity": "sha512-H7A+MZcbB4g5fa6O4giYgrCG1h5whJfIxr4txDtDfolygzwRzqH1PSMfjW/jYyIpaH6XqXMSDHvbXRFGKstboA==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.10.tgz", + "integrity": "sha512-cGFQyUOxOLVnehczdP4L7KXbKQTe/aQgbXmacQYgqcP/AnpJs7QfZbw1/k1wJtXrhzbGBh3JSWnpme74bnF3dQ==", "requires": { "@babel/core": "^7.17.2", "chokidar": "^3.0.0", @@ -17644,15 +17678,6 @@ "yargs": "^17.2.1" }, "dependencies": { - "@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "requires": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, "@babel/core": { "version": "7.17.9", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.9.tgz", @@ -17773,46 +17798,37 @@ } }, "@angular/core": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.5.tgz", - "integrity": "sha512-lf+Be8dDRvz8J+QFR2RxS3BBfgGM4eWq4bI1+k/aqDnM6OW4pQXdq8Lzae8SxN48u1NxB1M/1bbc9LcrChrj2Q==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.10.tgz", + "integrity": "sha512-7jH1a5wZdE6Ki2Dow7s6v1/5SfUcXsjAu3n523QSDlM078QG0p95npcqPseO9mNftG9MfRqBE7sl1Nb+ZK7eBg==", "requires": { "tslib": "^2.3.0" } }, "@angular/forms": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-13.3.5.tgz", - "integrity": "sha512-jCxxAwf4HkDmKE76/yQmTsbqW3jsxiKyPy32Nh6Bt4r/ww8VDv+sv5YdYNuvvZcuuQ70K+/EPnKFpQgYttvS8A==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-13.3.10.tgz", + "integrity": "sha512-2cREi8nvCdspYHk6KJ5xjIgq8Dgh/kfwPIVjpLQBZFNC03Q6GvOLVoVm8ye6ToOpQFjvjpjndqU93JXSLMANgA==", "requires": { "tslib": "^2.3.0" } }, "@angular/language-service": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-13.3.5.tgz", - "integrity": "sha512-IJawCyu4Zwk6GNPDkbSkY6sFYaBHtaHMwhaiRojrqiKA0n2bDNULLcHfYGSyA7UvkX8m9Nt0M5GaF66BIwuZSw==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-13.3.10.tgz", + "integrity": "sha512-TQwVIEFTWOlX9Jy2PhOT52Eo3ApNWSkjQavAuIU4uNQRCyoKMTywJ6MlQiQlMoWPH77Yn5EZyCwRoWFVWg3q0w==", "dev": true }, "@angular/localize": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/localize/-/localize-13.3.5.tgz", - "integrity": "sha512-0MmGvQSBZeKwsOBATWp7Y5rxyGW6OaszLtecKu32VVJSjoDN4M6uMHBMjVVe4IxbyJnbhlSPRSYL9hRFbOve0A==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/localize/-/localize-13.3.10.tgz", + "integrity": "sha512-DNSOLJd8SkYHWKWyBm/piYnjurYRsgXTmWoVXTrfEuALEHxz3cwnVUPvoiWwJVMKklFr76D61pDY4mz5muPxog==", "requires": { "@babel/core": "7.17.2", "glob": "7.2.0", "yargs": "^17.2.1" }, "dependencies": { - "@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "requires": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, "@babel/core": { "version": "7.17.2", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.2.tgz", @@ -17923,25 +17939,25 @@ } }, "@angular/platform-browser": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.5.tgz", - "integrity": "sha512-DPV1J3h1ua4GI9PuXDr8IlzJoC/TR0A/onPTaE6IFOzs1r28vB+vWRRbZURXrTYeWzWVB/2R9tPOqFNoi3zlzA==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.10.tgz", + "integrity": "sha512-zi0FrA8zZRiHLBfKlfIxikG06wMF2KcSp6oqrIblrc1VrHgPRVRABz8vryH84lasDssjYdIS9AvbQnCCdgCzJA==", "requires": { "tslib": "^2.3.0" } }, "@angular/platform-browser-dynamic": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-13.3.5.tgz", - "integrity": "sha512-Mko8/mRlcVsZJQ5zHfc/p7so/ZN16UMynTnksrD7cEgGxDuJosE8m+exqgoT03VCYaOjJtCFXSwdOb/8FOUDZQ==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-13.3.10.tgz", + "integrity": "sha512-hygsEjTaS+VDUrBZZiRJFo5J7AHCS/EcAc1IWvb69EnVqA9RwqM4hWbuy3y/cmLEeHLLmRldIlS6xRPt8fTNQg==", "requires": { "tslib": "^2.3.0" } }, "@angular/platform-server": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/platform-server/-/platform-server-13.3.5.tgz", - "integrity": "sha512-ja9/mgBIAriQO3H9Q1MTXxJV1s59a2NJeeOffGHr86TLDcaxxzumozfoaKr5p6m0Ty3yqZcFc3wUQJl5I/1H0A==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/platform-server/-/platform-server-13.3.10.tgz", + "integrity": "sha512-KekOeqzdL9tL9h7bDuYoz1utnd6p6y6qAvAvCGm2Qa1fX3f/NQQ12pngtVqhvIgB5PpROCNypla/ejcBmNsQ2g==", "requires": { "domino": "^2.1.2", "tslib": "^2.3.0", @@ -17949,9 +17965,9 @@ } }, "@angular/router": { - "version": "13.3.5", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-13.3.5.tgz", - "integrity": "sha512-3yUNyBpUi0KUKP91a3dVQsr9Jfjs4wGxpiFYb3apc7lKT5R1LJqt2O0EchjOgvFyJ6TDOemdCAzKgvSRkDxpMw==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-13.3.10.tgz", + "integrity": "sha512-neGaeiHravXlCbNbyGJecwQyu/91Pj/E9/ohVFzBBE4V9BrNx9v7Ntc4ugqgpnrV2wtonPP7TQDqXxrPk4QVfg==", "requires": { "tslib": "^2.3.0" } @@ -19398,9 +19414,9 @@ } }, "@ngtools/webpack": { - "version": "13.3.4", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-13.3.4.tgz", - "integrity": "sha512-dNDNeAOwtpX5A7TTEsgDbkg4jTmAJHD96qLqcpJqfBg8nZ4mqn6E0HinX9HZKaCST1/75T6GsFo1Muc4MsHYgA==", + "version": "13.3.7", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-13.3.7.tgz", + "integrity": "sha512-KtNMHOGZIU2oaNTzk97ZNwTnJLbvnSpwyG3/+VW9xN92b2yw8gG9tHPKW2fsFrfzF9Mz8kqJeF31ftvkYuKtuA==", "requires": {} }, "@nguniversal/builders": { @@ -19472,54 +19488,6 @@ "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", "dev": true }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "critters": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", - "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "css-select": "^4.2.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "postcss": "^8.3.7", - "pretty-bytes": "^5.3.0" - } - }, "cssom": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", @@ -19588,12 +19556,6 @@ "mime-types": "^2.1.12" } }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, "html-encoding-sniffer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", @@ -19665,15 +19627,6 @@ "dev": true, "optional": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "tr46": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", @@ -19739,23 +19692,214 @@ } }, "@nguniversal/express-engine": { - "version": "12.1.3", - "resolved": "https://registry.npmjs.org/@nguniversal/express-engine/-/express-engine-12.1.3.tgz", - "integrity": "sha512-iu/7Al3NjwdwJw3ALyW9n7MzAQ75/Ca/cd2xWi7rzgvev2pgakZfvn2/EbB8oFI6xOSvA2irA29BeobkR4crlw==", + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/@nguniversal/express-engine/-/express-engine-13.1.1.tgz", + "integrity": "sha512-NdiBP0IRbPrNYEMLy3a6os2mNgRNE84tsMn+mV2uF4wv1JNs3YyoXcucWvhgHdODbDtc6z4CGn8t/6KagRqmvA==", "requires": { - "@nguniversal/common": "12.1.3", + "@nguniversal/common": "13.1.1", "tslib": "^2.3.0" }, "dependencies": { "@nguniversal/common": { - "version": "12.1.3", - "resolved": "https://registry.npmjs.org/@nguniversal/common/-/common-12.1.3.tgz", - "integrity": "sha512-0fP8ThHx3vePJxTdic5cz9hvWnqB2Uvx2uf1JQ68zto8ZXrasOeB8kT+ujhuUIyH8AR98BYMudMXCVvq+UbkeA==", + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/@nguniversal/common/-/common-13.1.1.tgz", + "integrity": "sha512-DoAPA7+kUz+qMgCTUtRPFcMGY0zz8OSkOTZnxqO5sUYntD6mCEQImHU0WF4ud88j71o0Hv+AISJD1evAAANCdw==", "requires": { - "critters": "0.0.12", - "jsdom": "16.6.0", + "critters": "0.0.16", + "jsdom": "19.0.0", "tslib": "^2.3.0" } + }, + "@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + }, + "acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==" + }, + "cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + }, + "data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "requires": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "dependencies": { + "whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "requires": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + } + } + } + }, + "domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "requires": { + "webidl-conversions": "^7.0.0" + } + }, + "escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "requires": { + "whatwg-encoding": "^2.0.0" + } + }, + "http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "requires": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + } + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "jsdom": { + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-19.0.0.tgz", + "integrity": "sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==", + "requires": { + "abab": "^2.0.5", + "acorn": "^8.5.0", + "acorn-globals": "^6.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.1", + "decimal.js": "^10.3.1", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^3.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^10.0.0", + "ws": "^8.2.3", + "xml-name-validator": "^4.0.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true + }, + "tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "requires": { + "punycode": "^2.1.1" + } + }, + "w3c-xmlserializer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz", + "integrity": "sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==", + "requires": { + "xml-name-validator": "^4.0.0" + } + }, + "webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + }, + "whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "requires": { + "iconv-lite": "0.6.3" + } + }, + "whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" + }, + "whatwg-url": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-10.0.0.tgz", + "integrity": "sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==", + "requires": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + } + }, + "ws": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.6.0.tgz", + "integrity": "sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==", + "requires": {} + }, + "xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" } } }, @@ -20847,34 +20991,14 @@ } }, "babel-loader": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz", - "integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==", + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", + "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", "requires": { "find-cache-dir": "^3.3.1", - "loader-utils": "^1.4.0", + "loader-utils": "^2.0.0", "make-dir": "^3.1.0", "schema-utils": "^2.6.5" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - } } }, "babel-plugin-dynamic-import-node": { @@ -21080,7 +21204,7 @@ "bonjour": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", "requires": { "array-flatten": "^2.1.0", "deep-equal": "^1.0.1", @@ -22079,7 +22203,7 @@ "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" }, "component-emitter": { "version": "1.3.0", @@ -22112,7 +22236,7 @@ "bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" }, "debug": { "version": "2.6.9", @@ -22394,12 +22518,12 @@ } }, "critters": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.12.tgz", - "integrity": "sha512-ujxKtKc/mWpjrOKeaACTaQ1aP0O31M0ZPWhfl85jZF1smPU4Ivb9va5Ox2poif4zVJQQo0LCFlzGtEZAsCAPcw==", + "version": "0.0.16", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", + "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", "requires": { "chalk": "^4.1.0", - "css-select": "^4.1.3", + "css-select": "^4.2.0", "parse5": "^6.0.1", "parse5-htmlparser2-tree-adapter": "^6.0.1", "postcss": "^8.3.7", @@ -22592,7 +22716,8 @@ "cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true }, "cssstyle": { "version": "2.3.0", @@ -22842,6 +22967,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dev": true, "requires": { "abab": "^2.0.3", "whatwg-mimetype": "^2.3.0", @@ -22950,9 +23076,9 @@ "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" }, "del": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", - "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", "requires": { "globby": "^11.0.1", "graceful-fs": "^4.2.4", @@ -23166,6 +23292,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dev": true, "requires": { "webidl-conversions": "^5.0.0" }, @@ -23173,7 +23300,8 @@ "webidl-conversions": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true } } }, @@ -24692,6 +24820,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, "requires": { "whatwg-encoding": "^1.0.5" } @@ -25413,6 +25542,7 @@ "version": "16.6.0", "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.6.0.tgz", "integrity": "sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg==", + "dev": true, "requires": { "abab": "^2.0.5", "acorn": "^8.2.4", @@ -25446,12 +25576,14 @@ "acorn": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", - "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==" + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", + "dev": true }, "escodegen": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dev": true, "requires": { "esprima": "^4.0.1", "estraverse": "^5.2.0", @@ -25463,12 +25595,14 @@ "estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true }, "form-data": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -25479,6 +25613,7 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "optional": true } } @@ -26261,9 +26396,9 @@ "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" }, "memfs": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz", - "integrity": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.3.tgz", + "integrity": "sha512-eivjfi7Ahr6eQTn44nvTnR60e4a1Fs1Via2kCR5lHo/kyNoiMWaXCNJ/GpSd0ilXas2JSOl9B5FTIhflXu0hlg==", "requires": { "fs-monkey": "1.0.3" } @@ -29462,6 +29597,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, "requires": { "punycode": "^2.1.1" } @@ -29900,6 +30036,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, "requires": { "xml-name-validator": "^3.0.0" } @@ -29945,7 +30082,8 @@ "webidl-conversions": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true }, "webpack": { "version": "5.70.0", @@ -30178,9 +30316,9 @@ } }, "ws": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", - "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.6.0.tgz", + "integrity": "sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==", "requires": {} } } @@ -30226,6 +30364,7 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, "requires": { "iconv-lite": "0.4.24" } @@ -30233,12 +30372,14 @@ "whatwg-mimetype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true }, "whatwg-url": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, "requires": { "lodash": "^4.7.0", "tr46": "^2.1.0", @@ -30349,7 +30490,8 @@ "ws": { "version": "7.4.6", "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==" + "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", + "dev": true }, "xhr2": { "version": "0.2.0", @@ -30359,7 +30501,8 @@ "xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true }, "xmlchars": { "version": "2.2.0", diff --git a/frontend/package.json b/frontend/package.json index b4e2727f8..15b29801d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -61,26 +61,26 @@ "cypress:run:ci:staging": "node update-config.js TESTNET_ENABLED=true SIGNET_ENABLED=true LIQUID_ENABLED=true BISQ_ENABLED=true ITEMS_PER_PAGE=25 && npm run generate-config && start-server-and-test serve:local-staging 4200 cypress:run:record" }, "dependencies": { - "@angular-devkit/build-angular": "^13.3.4", - "@angular/animations": "~13.3.5", - "@angular/cli": "~13.3.4", - "@angular/common": "~13.3.5", - "@angular/compiler": "~13.3.5", - "@angular/core": "~13.3.5", - "@angular/forms": "~13.3.5", - "@angular/localize": "^13.3.5", - "@angular/platform-browser": "~13.3.5", - "@angular/platform-browser-dynamic": "~13.3.5", - "@angular/platform-server": "~13.3.5", - "@angular/router": "~13.3.5", - "@fortawesome/angular-fontawesome": "0.10.1", - "@fortawesome/fontawesome-common-types": "0.3.0", - "@fortawesome/fontawesome-svg-core": "1.3.0", - "@fortawesome/free-solid-svg-icons": "6.0.0", + "@angular-devkit/build-angular": "~13.3.7", + "@angular/animations": "~13.3.10", + "@angular/cli": "~13.3.7", + "@angular/common": "~13.3.10", + "@angular/compiler": "~13.3.10", + "@angular/core": "~13.3.10", + "@angular/forms": "~13.3.10", + "@angular/localize": "~13.3.10", + "@angular/platform-browser": "~13.3.10", + "@angular/platform-browser-dynamic": "~13.3.10", + "@angular/platform-server": "~13.3.10", + "@angular/router": "~13.3.10", + "@fortawesome/angular-fontawesome": "~0.10.1", + "@fortawesome/fontawesome-common-types": "~0.3.0", + "@fortawesome/fontawesome-svg-core": "~1.3.0", + "@fortawesome/free-solid-svg-icons": "~6.0.0", "@juggle/resize-observer": "^3.3.1", "@mempool/mempool.js": "2.3.0", "@ng-bootstrap/ng-bootstrap": "^11.0.0", - "@nguniversal/express-engine": "12.1.3", + "@nguniversal/express-engine": "~13.1.1", "@types/qrcode": "~1.4.2", "bootstrap": "~4.5.0", "browserify": "^17.0.0", @@ -100,8 +100,8 @@ "zone.js": "~0.11.4" }, "devDependencies": { - "@angular/compiler-cli": "~13.3.5", - "@angular/language-service": "~13.3.5", + "@angular/compiler-cli": "~13.3.10", + "@angular/language-service": "~13.3.10", "@nguniversal/builders": "~13.1.0", "@types/express": "^4.17.0", "@types/jasmine": "~3.6.0", From 24f464437934bbe7ee577a0c3d5599de4deda18e Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Thu, 26 May 2022 16:48:06 -0400 Subject: [PATCH 09/19] Orient stuck tx faqs for normies --- frontend/src/app/docs/api-docs/api-docs-data.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/docs/api-docs/api-docs-data.ts b/frontend/src/app/docs/api-docs/api-docs-data.ts index 20108d250..22893a982 100644 --- a/frontend/src/app/docs/api-docs/api-docs-data.ts +++ b/frontend/src/app/docs/api-docs/api-docs-data.ts @@ -6001,8 +6001,8 @@ export const faqData = [ category: "help", showConditions: bitcoinNetworks, fragment: "why-is-transaction-stuck-in-mempool", - title: "Why is my transaction stuck in the mempool?", - answer: "

Miners decide which transactions are included in the blocks they mine, so they usually prioritize transactions which pay them the highest transaction fees (transaction fees are measured in sats per virtual byte, or sat/vB). If it's been a while and your transcation hasn't been confirmed, your transaction probably has a lower transaction fee relative to other transactions currently in the mempool.

" + title: "Why isn't my transaction confirming?", + answer: "

If it's been a while and your transaction hasn't confirmed, your transaction is probably using a lower feerate relative to other transactions currently in the mempool. Depending on how you made your transaction, there may be ways to accelerate the process.

There's no need to panic—a Bitcoin transaction will always either confirm completely (or not at all) at some point. As long as you have your transaction's ID, you can always see where your funds are.

This site only provides data about the Bitcoin network—it cannot help you get your transaction confirmed quicker.

" }, { type: "endpoint", @@ -6010,7 +6010,7 @@ export const faqData = [ showConditions: bitcoinNetworks, fragment: "how-to-get-transaction-confirmed-quickly", title: "How can I get my transaction confirmed more quickly?", - answer: "

If your wallet supports RBF, and if your transaction was created with RBF enabled, you can bump the fee higher.

Otherwise, if your wallet does not support RBF, you can increase the effective fee rate of your transaction by spending its change output using a higher fee. This is called CPFP.

" + answer: "

To get your transaction confirmed quicker, you will need to increase its effective feerate.

If your transaction was created with RBF enabled, your stuck transaction can simply be replaced with a new one that has a higher fee.

Otherwise, if you control any of the stuck transaction's outputs, you can use CPFP to increase your stuck transaction's effective feerate.

If you are not sure how to do RBF or CPFP, work with the tool you used to make the transaction (wallet software, exchange company, etc). This website only provides data about the Bitcoin network, so there is nothing it can do to help you get your transaction confirmed quicker.

" }, { type: "endpoint", @@ -6018,7 +6018,7 @@ export const faqData = [ showConditions: bitcoinNetworks, fragment: "how-prevent-stuck-transaction", title: "How can I prevent a transaction from getting stuck in the future?", - answer: "

You must use an adequate transaction fee commensurate with how quickly you need the transaction to be confirmed. Also consider using RBF if your wallet supports it so that you can bump the fee rate if needed.

" + answer: "

You must use an adequate transaction fee commensurate with how quickly you need the transaction to be confirmed. See Mempool's fee estimates on the front page.

Also consider using RBF (if your wallet supports it) so that you can bump the feerate on your transaction if it does end up getting stuck.

" }, { type: "category", From 9a45dea52f2c5e7a66b4008b784e82d0bb21ae83 Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Thu, 19 May 2022 16:36:59 -0400 Subject: [PATCH 10/19] Caution about manual installs in docker readme --- docker/README.md | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/docker/README.md b/docker/README.md index 37a2cc079..1d8580085 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,18 +1,23 @@ # Docker Installation -This directory contains the Dockerfiles used to build and release the official images and a `docker-compose.yml` for end users to run a Mempool instance with minimal effort. +This directory contains the Dockerfiles used to build and release the official images, as well as a `docker-compose.yml` to configure environment variables and other settings. -You can choose to configure Mempool to run with a basic backend powered by just `bitcoind`, or with `bitcoind` along with an Electrum-compatible server for full functionality. +If you are looking to use these Docker images to deploy your own instance of Mempool, note that they only containerize Mempool's frontend and backend. You will still need to deploy and configure Bitcoin Core and an Electrum Server separately, along with any other utilities specific to your use case (e.g., a reverse proxy, etc). Such configuration is mostly beyond the scope of the Mempool project, so please only proceed if you know what you're doing. -## `bitcoind`-only Configuration +Jump to a section in this doc: +- [Configure with Bitcoin Core Only](#configure-with-bitcoin-core-only) +- [Configure with Bitcoin Core + Electrum Server](#configure-with-bitcoin-core--electrum-server) +- [Further Configuration](#further-configuration) -_Note: address lookups require an Electrum server and will not work with this configuration._ +## Configure with Bitcoin Core Only -Make sure `bitcoind` is running and synced. +_Note: address lookups require an Electrum Server and will not work with this configuration. [Add an Electrum Server](#configure-with-bitcoin-core--electrum-server) to your backend for full functionality._ -The default Docker configuration assumes you have added RPC credentials for a `mempool` user with a `mempool` password in your `bitcoin.conf` file, like so: +The default Docker configuration assumes you have the following configuration in your `bitcoin.conf` file: ``` +txindex=1 +server=1 rpcuser=mempool rpcpassword=mempool ``` @@ -31,6 +36,8 @@ If you want to use different credentials, specify them in the `docker-compose.ym 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. +Make sure `bitcoind` is running and synced. + Now, run: ```bash @@ -39,11 +46,11 @@ docker-compose up Your Mempool instance should be running at http://localhost. The graphs will be populated as new transactions are detected. -## `bitcoind` + Electrum Server Configuration +## Configure with Bitcoin Core + Electrum Server -First, configure `bitcoind` as specified above, and make sure your Electrum server is running and synced. +First, configure `bitcoind` as specified above, and make sure your Electrum Server is running and synced. See [this FAQ](https://mempool.space/docs/faq#address-lookup-issues) if you need help picking an Electrum Server implementation. -Then, make sure the following variables are set in `docker-compose.yml`, as shown below, so Mempool can connect to your Electrum server: +Then, set the following variables in `docker-compose.yml` so Mempool can connect to your Electrum Server: ``` api: From 3e82e432c636428cc399d83965585566b3c6b985 Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Mon, 23 May 2022 14:03:50 -0400 Subject: [PATCH 11/19] Add manual backend setup notes to backend/ readme --- backend/README.md | 148 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 140 insertions(+), 8 deletions(-) diff --git a/backend/README.md b/backend/README.md index e65205d67..c7508fda2 100644 --- a/backend/README.md +++ b/backend/README.md @@ -1,22 +1,154 @@ -# Setup backend watchers +# Mempool Backend -The backend is static. Typescript scripts are compiled into the `dist` folder and served through a node web server. +These instructions are mostly intended for developers, but can be used as a basis for personal or small-scale production setups. -You can avoid the manual shutdown/recompile/restart command line cycle by using a watcher. +If you choose to use these instructions for a production setup, be aware that you will still probably need to do additional configuration for your specific OS, environment, use-case, etc. We do our best here to provide a good starting point, but only proceed if you know what you're doing. Mempool does not provide support for custom setups. -Make sure you are in the `backend` directory `cd backend`. +See other ways to set up Mempool on [the main README](/../../#installation-methods). -1. Install nodemon and ts-node +Jump to a section in this doc: +- [Set Up the Backend](#setup) +- [Development Tips](#development-tips) + +## Setup + +### 1. Clone Mempool Repository + +Get the latest Mempool code: ``` -sudo npm install -g ts-node nodemon +git clone https://github.com/mempool/mempool +cd mempool ``` -2. Run the watcher +Check out the latest release: -> Note: You can find your npm global binary folder using `npm -g bin`, where nodemon will be installed. +``` +latestrelease=$(curl -s https://api.github.com/repos/mempool/mempool/releases/latest|grep tag_name|head -1|cut -d '"' -f4) +git checkout $latestrelease +``` + +### 2. Configure Bitcoin Core + +Turn on `txindex`, enable RPC, and set RPC credentials in `bitcoin.conf`: + +``` +txindex=1 +server=1 +rpcuser=mempool +rpcpassword=mempool +``` + +### 3. Configure Electrum Server + +[Pick an Electrum Server implementation](https://mempool.space/docs/faq#address-lookup-issues), configure it, and make sure it's synced. + +**This step is optional.** You can run Mempool without configuring an Electrum Server for it, but address lookups will be disabled. + +### 4. Configure MySQL + +Get MariaDB from your operating system's package manager: + +``` +# Debian, Ubuntu, etc. +apt-get install mariadb-server mariadb-client + +# macOS +brew install mariadb +mysql.server start +``` + +Create a database and grant privileges: + +``` +MariaDB [(none)]> drop database mempool; +Query OK, 0 rows affected (0.00 sec) + +MariaDB [(none)]> create database mempool; +Query OK, 1 row affected (0.00 sec) + +MariaDB [(none)]> grant all privileges on mempool.* to 'mempool'@'%' identified by 'mempool'; +Query OK, 0 rows affected (0.00 sec) +``` + +### 5. Prepare Mempool Backend + +#### Build + +Install dependencies with `npm` and build the backend: + +``` +cd backend +npm install # add --prod for production +npm run build +``` + +#### Configure + +In the backend folder, make a copy of the sample config file: + +``` +cp mempool-config.sample.json mempool-config.json +``` + +Edit `mempool-config.json` as needed. + +In particular, make sure: +- the correct Bitcoin Core RPC credentials are specified in `CORE_RPC` +- the correct `BACKEND` is specified in `MEMPOOL`: it should be "electrum" if you're connecting to an Electrum Server and "none" if you're not + +### 6. Run Mempool Backend + +Run the Mempool backend: + +``` +npm run start +``` + +When it's running, you should see output like this: + +``` +Mempool updated in 0.189 seconds +Updating mempool +Mempool updated in 0.096 seconds +Updating mempool +Mempool updated in 0.099 seconds +Updating mempool +Calculated fee for transaction 1 / 10 +Calculated fee for transaction 2 / 10 +Calculated fee for transaction 3 / 10 +Calculated fee for transaction 4 / 10 +Calculated fee for transaction 5 / 10 +Calculated fee for transaction 6 / 10 +Calculated fee for transaction 7 / 10 +Calculated fee for transaction 8 / 10 +Calculated fee for transaction 9 / 10 +Calculated fee for transaction 10 / 10 +Mempool updated in 0.243 seconds +Updating mempool +``` + +### 7. Set Up Mempool Frontend +With the backend configured and running, proceed to set up the [Mempool frontend](../frontend#manual-setup). + +## Development Tips + +### Set Up Backend Watchers + +The Mempool backend is static. TypeScript scripts are compiled into the `dist` folder and served through a Node.js web server. + +As a result, for development purposes, you may find it helpful to set up backend watchers to avoid the manual shutdown/recompile/restart command-line cycle. + +First, install `nodemon` and `ts-node`: + +``` +npm install -g ts-node nodemon +``` + +Then, run the watcher: ``` nodemon src/index.ts --ignore cache/ --ignore pools.json ``` +`nodemon` should be in npm's global binary folder. If needed, you can determine where that is with `npm -g bin`. From 24e745e85dd6abb02e14b40fd7f60ed8096e2f15 Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Mon, 23 May 2022 18:21:13 -0400 Subject: [PATCH 12/19] Add manual frontend setup notes to frontend/ readme --- frontend/README.md | 72 ++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 63 insertions(+), 9 deletions(-) diff --git a/frontend/README.md b/frontend/README.md index f7fb08552..59929b5ee 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -1,8 +1,30 @@ -# mempool-frontend +# Mempool Frontend -## Contributing +You can build and run the Mempool frontend and proxy to the production Mempool backend (for easier frontend development), or you can connect it to your own backend for a full Mempool development instance, custom deployment, etc. -This package is used for the https://mempool.space, https://liquid.network and https://bisq.markets websites - there are npm scripts to setup all three, which effectively change how BASE_MODULE is configured: +Jump to a section in this doc: +- [Quick Setup for Frontend Development](#quick-setup-for-frontend-development) +- [Manual Frontend Setup](#manual-setup) +- [Translations](#translations-transifex-project) + +## Quick Setup for Frontend Development + +If you want to quickly improve the UI, fix typos, or make other updates that don't require any backend changes, you don't need to set up an entire backend—you can simply run the Mempool frontend locally and proxy to the mempool.space backend. + +### 1. Clone Mempool Repository + +Get the latest Mempool code: + +``` +git clone https://github.com/mempool/mempool +cd mempool +``` + +### 2. Specify Website + +The same frontend codebase is used for https://mempool.space, https://liquid.network and https://bisq.markets. + +Configure the frontend for the site you want by running the corresponding command: ``` $ npm run config:defaults:mempool @@ -10,18 +32,20 @@ $ npm run config:defaults:liquid $ npm run config:defaults:bisq ``` -Changes that affect the frontend codebase only can be done using the production backend so you don't need to spin up the entire Mempool infrastructure. This is very convenient in case you want to quickly improve the UI, fix typos or implement new features that don't require any backend changes. +### 3. Run the Frontend -Make your changes, install the project dependencies and run the frontend server as follows: +Install project dependencies and run the frontend server: ``` $ npm install $ npm run serve:local-prod ``` -The frontend will be available at http://localhost:4200/ and all API requests will be proxied to the production server at https://mempool.space +The frontend will be available at http://localhost:4200/ and all API requests will be proxied to the production server at https://mempool.space. -After making your changes, you can run our end-to-end automation suite and check for possible regressions: +### 4. Test + +After making your changes, you can run our end-to-end automation suite and check for possible regressions. Headless: @@ -37,11 +61,41 @@ $ npm run config:defaults:mempool && npm run cypress:open This will open the Cypress test runner, where you can select any of the test files to run. -If all tests are green, submit your PR and it will be reviewed by someone on the team as soon as possible. +If all tests are green, submit your PR, and it will be reviewed by someone on the team as soon as possible. + +## Manual Setup + +Set up the [Mempool backend](../backend/) first, if you haven't already. + +### 1. Build the Frontend + +Build the frontend: + +``` +cd frontend +npm install # add --prod for production +npm run build +``` + +### 2. Run the Frontend + +#### Development + +To run your local Mempool frontend with your local Mempool backend: + +``` +npm run serve +``` + +#### Production + +The `npm run build` command from step 1 above should have generated a `dist` directory. Put the contents of `dist/` into the root folder of your web server. + +You will probably want to set up a reverse proxy, TLS, etc. There are sample nginx configuration files in the top level of the repository for reference, but note that support for such tasks is outside the scope of this project. ## Translations: Transifex Project -The mempool frontend strings are localized into 20+ locales: +The Mempool frontend strings are localized into 20+ locales: https://www.transifex.com/mempool/mempool/dashboard/ ### Translators From c69d0e8148f69e26e269668a7975f453a0cb9a6f Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Thu, 26 May 2022 17:57:48 -0400 Subject: [PATCH 13/19] Add note on mysql install brought up in #1731 --- backend/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/README.md b/backend/README.md index c7508fda2..2fb7ee68a 100644 --- a/backend/README.md +++ b/backend/README.md @@ -45,7 +45,9 @@ rpcpassword=mempool **This step is optional.** You can run Mempool without configuring an Electrum Server for it, but address lookups will be disabled. -### 4. Configure MySQL +### 4. Configure MariaDB + +_Mempool needs MariaDB v10.5 or later. If you already have MySQL installed, make sure to migrate any existing databases **before** installing MariaDB._ Get MariaDB from your operating system's package manager: From 28439bff7dfefa2752080e60356a6dfd8bb8574f Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Thu, 26 May 2022 18:19:58 -0400 Subject: [PATCH 14/19] Add recommended versions for node and npm --- backend/README.md | 2 ++ frontend/README.md | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/backend/README.md b/backend/README.md index 2fb7ee68a..2adc8bbd2 100644 --- a/backend/README.md +++ b/backend/README.md @@ -77,6 +77,8 @@ Query OK, 0 rows affected (0.00 sec) #### Build +_Node.js 16 and npm 7 are recommended._ + Install dependencies with `npm` and build the backend: ``` diff --git a/frontend/README.md b/frontend/README.md index 59929b5ee..49dd104a7 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -34,6 +34,8 @@ $ npm run config:defaults:bisq ### 3. Run the Frontend +_Node.js 16 and npm 7 are recommended._ + Install project dependencies and run the frontend server: ``` @@ -69,6 +71,8 @@ Set up the [Mempool backend](../backend/) first, if you haven't already. ### 1. Build the Frontend +_Node.js 16 and npm 7 are recommended._ + Build the frontend: ``` From d944362c7da2a7dd6491a87bb288a1acc3e04a49 Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Thu, 26 May 2022 19:33:54 -0400 Subject: [PATCH 15/19] Broaden guidance for hosting frontend --- frontend/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/README.md b/frontend/README.md index 49dd104a7..e223f17c2 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -93,7 +93,7 @@ npm run serve #### Production -The `npm run build` command from step 1 above should have generated a `dist` directory. Put the contents of `dist/` into the root folder of your web server. +The `npm run build` command from step 1 above should have generated a `dist` directory. Put the contents of `dist/` onto your web server. You will probably want to set up a reverse proxy, TLS, etc. There are sample nginx configuration files in the top level of the repository for reference, but note that support for such tasks is outside the scope of this project. From b7c918b79dc55f6d914c7ea42aac423703bf2e88 Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Thu, 26 May 2022 22:13:37 -0400 Subject: [PATCH 16/19] Mention "esplora" value for blockstream/electrs --- backend/README.md | 5 ++++- docker/README.md | 5 +++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/backend/README.md b/backend/README.md index 2adc8bbd2..cbda2478b 100644 --- a/backend/README.md +++ b/backend/README.md @@ -99,7 +99,10 @@ Edit `mempool-config.json` as needed. In particular, make sure: - the correct Bitcoin Core RPC credentials are specified in `CORE_RPC` -- the correct `BACKEND` is specified in `MEMPOOL`: it should be "electrum" if you're connecting to an Electrum Server and "none" if you're not +- the correct `BACKEND` is specified in `MEMPOOL`: + - "electrum" if you're using [romanz/electrs](https://github.com/romanz/electrs) or [cculianu/Fulcrum](https://github.com/cculianu/Fulcrum) + - "esplora" if you're using [Blockstream/electrs](https://github.com/Blockstream/electrs) + - "none" if you're not using any Electrum Server ### 6. Run Mempool Backend diff --git a/docker/README.md b/docker/README.md index 1d8580085..45bdff615 100644 --- a/docker/README.md +++ b/docker/README.md @@ -61,6 +61,11 @@ Then, set the following variables in `docker-compose.yml` so Mempool can connect ELECTRUM_TLS_ENABLED: "false" ``` +Eligible values for `MEMPOOL_BACKEND`: + - "electrum" if you're using [romanz/electrs](https://github.com/romanz/electrs) or [cculianu/Fulcrum](https://github.com/cculianu/Fulcrum) + - "esplora" if you're using [Blockstream/electrs](https://github.com/Blockstream/electrs) + - "none" if you're not using any Electrum Server + Of course, if your Docker host IP address is different, update accordingly. With `bitcoind` and Electrum Server set up, run Mempool with: From e590759b7b1a4d14a06ac00f2c65065636231107 Mon Sep 17 00:00:00 2001 From: nymkappa Date: Tue, 24 May 2022 12:14:55 +0200 Subject: [PATCH 17/19] Don't try to run pools parser if db is not enabled --- backend/src/index.ts | 2 -- backend/src/tasks/pools-updater.ts | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/backend/src/index.ts b/backend/src/index.ts index 30c5ecf37..9e90edbc4 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -25,8 +25,6 @@ import databaseMigration from './api/database-migration'; import syncAssets from './sync-assets'; import icons from './api/liquid/icons'; import { Common } from './api/common'; -import mining from './api/mining'; -import HashratesRepository from './repositories/HashratesRepository'; import poolsUpdater from './tasks/pools-updater'; import indexer from './indexer'; diff --git a/backend/src/tasks/pools-updater.ts b/backend/src/tasks/pools-updater.ts index aac301256..05a1da5dc 100644 --- a/backend/src/tasks/pools-updater.ts +++ b/backend/src/tasks/pools-updater.ts @@ -16,7 +16,7 @@ class PoolsUpdater { } public async updatePoolsJson() { - if (['mainnet', 'testnet', 'signet'].includes(config.MEMPOOL.NETWORK) === false) { + if (['mainnet', 'testnet', 'signet'].includes(config.MEMPOOL.NETWORK) === false || config.DATABASE.ENABLED === false) { return; } From be3d8b5ed9230770cc3662583a13b96df49ed3b7 Mon Sep 17 00:00:00 2001 From: nymkappa Date: Tue, 24 May 2022 11:16:01 +0200 Subject: [PATCH 18/19] Mining dashboard still runs fine if Bitcoin Core becomes unavailable --- backend/src/api/blocks.ts | 17 ++++++++++++----- backend/src/api/mining.ts | 18 ++++++++++++++---- backend/src/repositories/BlocksRepository.ts | 13 +++++++++++++ backend/src/routes.ts | 12 ++++++++++-- 4 files changed, 49 insertions(+), 11 deletions(-) diff --git a/backend/src/api/blocks.ts b/backend/src/api/blocks.ts index b9b7b3aff..526d4889e 100644 --- a/backend/src/api/blocks.ts +++ b/backend/src/api/blocks.ts @@ -426,25 +426,32 @@ class Blocks { return returnBlocks; } + if (currentHeight === 0 && Common.indexingEnabled()) { + currentHeight = await blocksRepository.$mostRecentBlockHeight(); + } + // Check if block height exist in local cache to skip the hash lookup const blockByHeight = this.getBlocks().find((b) => b.height === currentHeight); let startFromHash: string | null = null; if (blockByHeight) { startFromHash = blockByHeight.id; - } else { + } else if (!Common.indexingEnabled()) { startFromHash = await bitcoinApi.$getBlockHash(currentHeight); } let nextHash = startFromHash; for (let i = 0; i < limit && currentHeight >= 0; i++) { let block = this.getBlocks().find((b) => b.height === currentHeight); - if (!block && Common.indexingEnabled()) { + if (block) { + returnBlocks.push(block); + } else if (Common.indexingEnabled()) { block = await this.$indexBlock(currentHeight); - } else if (!block) { + returnBlocks.push(block); + } else if (nextHash != null) { block = prepareBlock(await bitcoinApi.$getBlock(nextHash)); + nextHash = block.previousblockhash; + returnBlocks.push(block); } - returnBlocks.push(block); - nextHash = block.previousblockhash; currentHeight--; } diff --git a/backend/src/api/mining.ts b/backend/src/api/mining.ts index 7e7008351..be786db42 100644 --- a/backend/src/api/mining.ts +++ b/backend/src/api/mining.ts @@ -94,8 +94,13 @@ class Mining { poolsStatistics['blockCount'] = blockCount; const totalBlock24h: number = await BlocksRepository.$blockCount(null, '24h'); - const lastBlockHashrate = await bitcoinClient.getNetworkHashPs(totalBlock24h); - poolsStatistics['lastEstimatedHashrate'] = lastBlockHashrate; + + try { + poolsStatistics['lastEstimatedHashrate'] = await bitcoinClient.getNetworkHashPs(totalBlock24h); + } catch (e) { + poolsStatistics['lastEstimatedHashrate'] = 0; + logger.debug('Bitcoin Core is not available, using zeroed value for current hashrate'); + } return poolsStatistics; } @@ -118,7 +123,12 @@ class Mining { const blockCount1w: number = await BlocksRepository.$blockCount(pool.id, '1w'); const totalBlock1w: number = await BlocksRepository.$blockCount(null, '1w'); - const currentEstimatedkHashrate = await bitcoinClient.getNetworkHashPs(totalBlock24h); + let currentEstimatedHashrate = 0; + try { + currentEstimatedHashrate = await bitcoinClient.getNetworkHashPs(totalBlock24h); + } catch (e) { + logger.debug('Bitcoin Core is not available, using zeroed value for current hashrate'); + } return { pool: pool, @@ -132,7 +142,7 @@ class Mining { '24h': blockCount24h / totalBlock24h, '1w': blockCount1w / totalBlock1w, }, - estimatedHashrate: currentEstimatedkHashrate * (blockCount24h / totalBlock24h), + estimatedHashrate: currentEstimatedHashrate * (blockCount24h / totalBlock24h), reportedHashrate: null, }; } diff --git a/backend/src/repositories/BlocksRepository.ts b/backend/src/repositories/BlocksRepository.ts index dcd5b48d1..4fd5511af 100644 --- a/backend/src/repositories/BlocksRepository.ts +++ b/backend/src/repositories/BlocksRepository.ts @@ -121,6 +121,19 @@ class BlocksRepository { } } + /** + * Return most recent block height + */ + public async $mostRecentBlockHeight(): Promise { + try { + const [row] = await DB.query('SELECT MAX(height) as maxHeight from blocks'); + return row[0]['maxHeight']; + } catch (e) { + logger.err(`Cannot count blocks for this pool (using offset). Reason: ` + (e instanceof Error ? e.message : e)); + throw e; + } + } + /** * Get blocks count for a period */ diff --git a/backend/src/routes.ts b/backend/src/routes.ts index ef8dd47e5..91c41faa6 100644 --- a/backend/src/routes.ts +++ b/backend/src/routes.ts @@ -619,6 +619,14 @@ class Routes { } public async $getHistoricalHashrate(req: Request, res: Response) { + let currentHashrate = 0, currentDifficulty = 0; + try { + currentHashrate = await bitcoinClient.getNetworkHashPs(); + currentDifficulty = await bitcoinClient.getDifficulty(); + } catch (e) { + logger.debug('Bitcoin Core is not available, using zeroed value for current hashrate and difficulty'); + } + try { const hashrates = await HashratesRepository.$getNetworkDailyHashrate(req.params.interval); const difficulty = await BlocksRepository.$getBlocksDifficulty(req.params.interval); @@ -630,8 +638,8 @@ class Routes { res.json({ hashrates: hashrates, difficulty: difficulty, - currentHashrate: await bitcoinClient.getNetworkHashPs(), - currentDifficulty: await bitcoinClient.getDifficulty(), + currentHashrate: currentHashrate, + currentDifficulty: currentDifficulty, }); } catch (e) { res.status(500).send(e instanceof Error ? e.message : e); From 7be22b8236c6aa75d1269f90afb1d3028da3868d Mon Sep 17 00:00:00 2001 From: softsimon Date: Mon, 30 May 2022 13:26:54 +0400 Subject: [PATCH 19/19] Transifex pull --- frontend/src/locale/messages.ar.xlf | 172 +++++++++--------- frontend/src/locale/messages.ca.xlf | 150 ++++++++-------- frontend/src/locale/messages.cs.xlf | 153 ++++++++-------- frontend/src/locale/messages.de.xlf | 160 +++++++++-------- frontend/src/locale/messages.en_US.xlf | 150 ++++++++-------- frontend/src/locale/messages.es.xlf | 153 ++++++++-------- frontend/src/locale/messages.fa.xlf | 153 ++++++++-------- frontend/src/locale/messages.fi.xlf | 153 ++++++++-------- frontend/src/locale/messages.fr.xlf | 199 ++++++++++++--------- frontend/src/locale/messages.he.xlf | 153 ++++++++-------- frontend/src/locale/messages.hi.xlf | 153 ++++++++-------- frontend/src/locale/messages.hr.xlf | 150 ++++++++-------- frontend/src/locale/messages.hu.xlf | 156 ++++++++--------- frontend/src/locale/messages.it.xlf | 183 +++++++++++--------- frontend/src/locale/messages.ja.xlf | 222 +++++++++++++++--------- frontend/src/locale/messages.ka.xlf | 153 ++++++++-------- frontend/src/locale/messages.ko.xlf | 153 ++++++++-------- frontend/src/locale/messages.mk.xlf | 153 ++++++++-------- frontend/src/locale/messages.nb.xlf | 153 ++++++++-------- frontend/src/locale/messages.nl.xlf | 154 ++++++++--------- frontend/src/locale/messages.pl.xlf | 230 ++++++++++++++++--------- frontend/src/locale/messages.pt.xlf | 160 +++++++++-------- frontend/src/locale/messages.ro.xlf | 224 +++++++++++++++--------- frontend/src/locale/messages.ru.xlf | 153 ++++++++-------- frontend/src/locale/messages.sl.xlf | 153 ++++++++-------- frontend/src/locale/messages.sv.xlf | 164 +++++++++--------- frontend/src/locale/messages.th.xlf | 153 ++++++++-------- frontend/src/locale/messages.tr.xlf | 153 ++++++++-------- frontend/src/locale/messages.uk.xlf | 153 ++++++++-------- frontend/src/locale/messages.vi.xlf | 153 ++++++++-------- frontend/src/locale/messages.zh.xlf | 153 ++++++++-------- 31 files changed, 2530 insertions(+), 2545 deletions(-) diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index a0c3f6b01..5cf3c0a40 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -147,6 +147,7 @@ + node_modules/src/progressbar/progressbar.ts 59,63 @@ -250,6 +251,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -257,6 +259,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -279,7 +282,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +295,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +312,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +325,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +438,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +504,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +543,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +567,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -731,6 +718,7 @@ View more » + عرض المزيد 》 src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 92,97 @@ -770,7 +758,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1017,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1071,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1093,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,15 +1458,16 @@ التحالفات المجتمعية src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances Project Translators + مترجمي المشروع src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1476,7 @@ المساهمون في المشروع src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1485,7 @@ أعضاء المشروع src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1494,7 @@ فريق صيانة المشروع src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1530,23 @@ غير سري src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - من تحويلة + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - من معاملة + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1555,15 @@ خطأ في تحميل بيانات العنوان. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1572,7 @@ سري src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1588,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -1803,6 +1790,7 @@ All + الكل src/app/components/assets/assets-nav/assets-nav.component.html 13 @@ -2002,6 +1990,7 @@ Block Fees + رسوم الكتله src/app/components/block-fees-graph/block-fees-graph.component.html 5,7 @@ -2018,6 +2007,7 @@ Fees + الرسوم src/app/components/block-fees-graph/block-fees-graph.component.ts 160,158 @@ -2037,6 +2027,7 @@ Block Rewards + مكافأة الكتلة src/app/components/block-rewards-graph/block-rewards-graph.component.html 6,8 @@ -2053,13 +2044,14 @@ Reward + المكافأة src/app/components/block-rewards-graph/block-rewards-graph.component.ts 160,158 src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2095,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2242,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2400,24 @@ Transaction Details transaction.details - - Error loading block data. - خطأ في تحميل بيانات الكتلة. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : الكتلة : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2443,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2462,7 @@ التحويلات src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -2513,6 +2500,7 @@ Change + تغير src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 8,11 @@ -2618,6 +2606,7 @@ Next Halving + الانقسام التالي src/app/components/difficulty/difficulty.component.html 50,52 @@ -2729,6 +2718,7 @@ Mining + التعدين src/app/components/graphs/graphs.component.html 5 @@ -3029,6 +3019,7 @@ blocks + كتل src/app/components/pool-ranking/pool-ranking.component.ts 160,158 @@ -3060,6 +3051,7 @@ Show all + عرض الكل src/app/components/pool/pool.component.html 53,55 @@ -3070,16 +3062,17 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all Hide + إخفاء src/app/components/pool/pool.component.html 55,58 @@ -3108,6 +3101,7 @@ Estimated + المتوقع src/app/components/pool/pool.component.html 96,97 @@ -3188,6 +3182,7 @@ 24h + ٢٤ ساعه src/app/components/pool/pool.component.html 147 @@ -3200,6 +3195,7 @@ 1w + ١ أسبوع src/app/components/pool/pool.component.html 148 @@ -3278,10 +3274,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3305,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3639,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3768,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3815,7 @@ البرنامج النصي (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3825,7 @@ البرنامج النصي. (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3835,7 @@ شوهد src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3844,7 @@ البرنامج النصي استرداد P2SH src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3852,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3861,7 @@ نتائج التجزئة النصية العالقة 2 للشاهد النصي المنفصل. src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3870,7 @@ ن التسلسل src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3879,7 @@ نص النتائج السابقة. src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3888,7 @@ نص النتائج السابقة. src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3897,7 @@ إخراج المعاملات الى src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3906,7 @@ النتيجة النصية لمعاملات بتكوين(عملية عكسية لإلغاء الرموز النصية) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3916,19 @@ النتيجة النصيةلمعاملات بتكوين (سلسلة ارقام سداسية عشرية) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 هذه المعاملة وفرت % من الرسوم بسبب استخدام SegWit-Bech32 diff --git a/frontend/src/locale/messages.ca.xlf b/frontend/src/locale/messages.ca.xlf index 8fc9b3137..96a086065 100644 --- a/frontend/src/locale/messages.ca.xlf +++ b/frontend/src/locale/messages.ca.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -431,11 +431,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -500,10 +496,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -543,8 +535,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -567,14 +559,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -765,7 +749,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1022,7 +1006,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1075,7 +1059,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1096,7 +1080,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1456,7 +1440,7 @@ Community Alliances src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1464,7 +1448,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1473,7 +1457,7 @@ Col·laboradors del projecte src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1481,7 +1465,7 @@ Project Members src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1490,7 +1474,7 @@ Mantenidors del projecte src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1525,23 +1509,23 @@ Unconfidential src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1550,15 +1534,15 @@ S'ha produït un error en carregar les dades de l'adreça. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1567,7 +1551,7 @@ Confidencial src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1583,7 +1567,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2027,7 +2011,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2071,11 +2055,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2220,7 +2200,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2374,19 +2354,23 @@ Transaction Details transaction.details - - Error loading block data. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : src/app/components/block/block.component.ts - 146 + 147 @@ -2412,10 +2396,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2435,7 +2415,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3020,11 +3000,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3227,10 +3207,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3262,6 +3238,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3580,7 +3564,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3705,7 +3689,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3751,7 +3735,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3761,7 +3745,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3770,7 +3754,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3778,7 +3762,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3786,7 +3770,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3794,7 +3778,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3803,7 +3787,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3811,7 +3795,7 @@ Previous output script src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3819,7 +3803,7 @@ Previous output type src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3827,7 +3811,7 @@ Peg-out to src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3836,7 +3820,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3846,11 +3830,19 @@ ScriptPubKey (HEX)  src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index e4b913ee2..89069bd34 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ Komunitní aliance src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ Přispěvatelé projektu src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ Členové projektu src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ Správci projektu src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ Nedůvěrné src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - z transakce + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - z transakcí + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ Chyba při načítání údajů o adrese. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ Důvěrné src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - Chyba při načítání dat bloku. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Blok : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ Počet TX src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH redeem skript src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH witness skript src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ Předchozí výstupní skript src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ Předchozí typ výstupu src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ Peg-out na src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Tato transakce ušetřila % na poplatcích díky použití nativního SegWit-Bech32. diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index c7fe1399e..243e20a56 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -283,7 +283,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -296,7 +296,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -313,7 +313,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -326,7 +326,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -439,11 +439,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -509,10 +505,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -552,8 +544,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -576,14 +568,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -775,7 +759,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1034,7 +1018,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1088,7 +1072,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1110,7 +1094,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1478,7 +1462,7 @@ Community-Allianzen src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1487,7 +1471,7 @@ Projektübersetzer src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1496,7 +1480,7 @@ Projektmitwirkende src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1505,7 +1489,7 @@ Projektmitglieder src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1514,7 +1498,7 @@ Projektbetreuer src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1551,25 +1535,25 @@ Bekannt src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - von Transaktion + of transaction + von Transaktion src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - von Transaktionen + of transactions + von Transaktionen src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1578,16 +1562,16 @@ Fehler beim Laden der Adressdaten. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: - Es gibt viele Transaktionen an dieser Adresse, mehr als das Backend verarbeiten kann. Weitere Informationen unter einrichten eines stärkeren Backends. Alternativ kann diese Adresse auf der offiziellen Mempool-Website angezeigt werden: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + Auf dieser Adresse liegen mehr Transaktionen, als dein Backend verkraftet. Schau bei nach, wie man ein robusteres Backend einrichtet. Du könntest diese Adresse auch auf der offiziellen Mempool Webseite anschauen: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1596,7 +1580,7 @@ Vertraulich src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1612,7 +1596,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2078,7 +2062,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2123,11 +2107,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2274,7 +2254,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2432,21 +2412,25 @@ Transaction Details transaction.details - - Error loading block data. - Fehler beim Laden der Blockdaten. + + Error loading data. + Fehler beim Laden der Daten. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Block : src/app/components/block/block.component.ts - 146 + 147 @@ -2473,10 +2457,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2496,7 +2476,7 @@ TX src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3119,11 +3099,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3340,10 +3320,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3377,6 +3353,15 @@ sat/vB shared.sat-vbyte + + Average Fee + Durchschnittliche Gebühr + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks Durchschnittlich gezahlte Gebühr für jede Transaktion in den letzten 144 Blöcken @@ -3704,7 +3689,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3833,7 +3818,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3880,7 +3865,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3890,7 +3875,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3900,7 +3885,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3909,7 +3894,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3918,7 +3903,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3927,7 +3912,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3936,7 +3921,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3945,7 +3930,7 @@ Vorheriges Output Script src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3954,7 +3939,7 @@ Vorheriger Ausgabetyp src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3963,7 +3948,7 @@ Peg-out zu src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3972,7 +3957,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3982,11 +3967,20 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + Alle Inputs einblenden, um die Gebührendaten aufzudecken + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Diese Transaktion sparte % an Gebühren durch die Verwendung von nativem SegWit-Bech32 diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf index 3915c7ac7..fa5211aaf 100644 --- a/frontend/src/locale/messages.en_US.xlf +++ b/frontend/src/locale/messages.en_US.xlf @@ -250,7 +250,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -262,7 +262,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -278,7 +278,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -290,7 +290,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -397,11 +397,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -463,10 +459,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -504,8 +496,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -527,14 +519,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -714,7 +698,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -955,7 +939,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1006,7 +990,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1027,7 +1011,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1359,7 +1343,7 @@ Community Alliances src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1367,7 +1351,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1375,7 +1359,7 @@ Project Contributors src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1383,7 +1367,7 @@ Project Members src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1391,7 +1375,7 @@ Project Maintainers src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1425,23 +1409,23 @@ Unconfidential src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1449,15 +1433,15 @@ Error loading address data. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1465,7 +1449,7 @@ Confidential src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1481,7 +1465,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -1911,7 +1895,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -1954,11 +1938,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2100,7 +2080,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2248,19 +2228,23 @@ Transaction Details transaction.details - - Error loading block data. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : src/app/components/block/block.component.ts - 146 + 147 @@ -2285,10 +2269,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2307,7 +2287,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -2879,11 +2859,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3086,10 +3066,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3121,6 +3097,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3430,7 +3414,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3547,7 +3531,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3589,7 +3573,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3598,7 +3582,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3607,7 +3591,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3615,7 +3599,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3623,7 +3607,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3631,7 +3615,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3639,7 +3623,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3647,7 +3631,7 @@ Previous output script src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3655,7 +3639,7 @@ Previous output type src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3663,7 +3647,7 @@ Peg-out to src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3671,7 +3655,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3680,11 +3664,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 7d8ced057..2d8ed05fc 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ Alianzas de la comunidad src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ Contribuyentes al proyecto src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ Miembros del proyecto src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ Mantenedores del proyecto src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ No confidencial src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - de transacción + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - de transacciones + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ Errar cargando datos de dirección src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ Confidencial src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - Error cargando datos de bloque + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Bloque : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Testigo src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ script de canje P2SH src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ script de testigo P2WSH src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSecuencia src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ Script de salida previo src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ Anterior tipo de salida src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ Peg-out a src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Esta transacción ahorra % en tasas usando Segwit-Bech32 nativo diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 5468112f4..f5f6cac19 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ متحدین جامعه src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ مشارکت کنندگان src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ اعضای پروژه src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ نگهدارندگان پروژه src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ غیرمحرمانه src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - از تراکنش + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - از تراکنش + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ حطا در بازکردن داده‌های آدرس. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ محرمانه src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - خطا در بازکردن داده‌های بلاک. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : بلاک : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ تراکنش src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ شاهد src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ اسکریپت نقد کردن P2SH src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ اسکریپت شاهد P2WSH src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ اسکریپت خروجی قبلی src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ نوع خروجی قبلی src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ ‏Peg-out به src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 این تراکنش با استفاده کردن از SegWit-Bech32 حدودا درصد در کارمزد صرفه‌جویی کرده است diff --git a/frontend/src/locale/messages.fi.xlf b/frontend/src/locale/messages.fi.xlf index e75fef47c..62bf099d8 100644 --- a/frontend/src/locale/messages.fi.xlf +++ b/frontend/src/locale/messages.fi.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ Yhteisöliittoumat src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ Projektin avustajat src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ Projektin jäsenet src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ Projektin ylläpitäjät src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ Ei-luottamuksellinen src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - / siirtotapahtuma + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - / siirtotapahtumaa + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ Virhe osoitetietojen lataamisessa. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ Luottamuksellinen src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - Virhe lohkotietoja ladattaessa. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Lohko : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ Siirtoa src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Todistaja src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH lunastusskripti src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH todistajaskripti src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ Edellinen tulosteskripti src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ Edellinen tulostetyyppi src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ Irrotetaan src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Tämä transaktio säästi % siirtokuluissa käyttämällä natiivia SegWit-Bech32:ta diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 0236ad230..0a53f4743 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -11,6 +11,7 @@ Slide of + Diapositive sur node_modules/src/carousel/carousel.ts 147,156 @@ -147,6 +148,7 @@ + node_modules/src/progressbar/progressbar.ts 59,63 @@ -250,6 +252,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -257,6 +260,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -279,7 +283,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +296,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +313,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +326,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +439,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +505,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +544,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +568,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -771,7 +759,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1030,7 +1018,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1084,7 +1072,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1106,7 +1094,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1405,6 +1393,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. + Notre explorateur mempool et blockchain pour la communauté Bitcoin, axé sur le marché des frais de transaction et l'écosystème multicouche, entièrement auto-hébergé sans aucun tiers de confiance. src/app/components/about/about.component.html 13,17 @@ -1452,6 +1441,7 @@ Self-Hosted Integrations + Intégrations auto-hébergées src/app/components/about/about.component.html 173,175 @@ -1460,6 +1450,7 @@ Wallet Integrations + Intégrations des portefeuilles src/app/components/about/about.component.html 207,209 @@ -1471,15 +1462,16 @@ Alliances communautaires src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances Project Translators + Traducteurs src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1488,7 +1480,7 @@ Contributeurs au projet src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1497,7 +1489,7 @@ Membres du projet src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1506,7 +1498,7 @@ Mainteneurs de projet src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1532,7 +1524,7 @@ Multisig of - Multisig de + Multi-signature de src/app/components/address-labels/address-labels.component.ts 121 @@ -1543,25 +1535,23 @@ Non confidentiel src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - transaction sur + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - transactions sur + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1570,15 +1560,15 @@ Erreur lors du chargement des données de l'adresse src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1587,7 +1577,7 @@ Confidentiel src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1603,7 +1593,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -1799,6 +1789,7 @@ Featured + A la une src/app/components/assets/assets-nav/assets-nav.component.html 9 @@ -1806,7 +1797,7 @@ All - Tous + Tout src/app/components/assets/assets-nav/assets-nav.component.html 13 @@ -1990,6 +1981,7 @@ Block Fee Rates + Frais de bloc par tranche src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 5,7 @@ -2006,6 +1998,7 @@ Block Fees + Frais de bloc src/app/components/block-fees-graph/block-fees-graph.component.html 5,7 @@ -2042,6 +2035,7 @@ Block Rewards + Récompenses de bloc src/app/components/block-rewards-graph/block-rewards-graph.component.html 6,8 @@ -2065,7 +2059,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2078,6 +2072,7 @@ Block Sizes and Weights + Tailles et poids de bloc src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html 4,6 @@ -2109,11 +2104,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2260,7 +2251,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2418,25 +2409,29 @@ Transaction Details transaction.details - - Error loading block data. - Erreur lors du chargement des données du bloc + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Bloc : src/app/components/block/block.component.ts - 146 + 147 Pool + Pool src/app/components/blocks-list/blocks-list.component.html 12,13 @@ -2458,10 +2453,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2481,7 +2472,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -2555,6 +2546,7 @@ blocks + blocs src/app/components/difficulty/difficulty.component.html 10,11 @@ -2575,6 +2567,7 @@ block + bloc src/app/components/difficulty/difficulty.component.html 11,12 @@ -2626,6 +2619,7 @@ Next Halving + Prochain halving src/app/components/difficulty/difficulty.component.html 50,52 @@ -2759,6 +2753,7 @@ Pools Dominance + Dominance des pools src/app/components/graphs/graphs.component.html 10 @@ -2771,6 +2766,7 @@ Hashrate & Difficulty + Taux de hachage & difficulté src/app/components/graphs/graphs.component.html 12 @@ -2787,6 +2783,7 @@ Hashrate + Taux de hachage src/app/components/hashrate-chart/hashrate-chart.component.html 8,10 @@ -2811,6 +2808,7 @@ Pools Historical Dominance + Historique de dominance des pools src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 63 @@ -2818,6 +2816,7 @@ Indexing blocks + Indexage des blocs src/app/components/indexing-progress/indexing-progress.component.html 1 @@ -2825,6 +2824,7 @@ Indexing network hashrate + Indexage des taux de hachage src/app/components/indexing-progress/indexing-progress.component.html 2 @@ -2832,6 +2832,7 @@ Indexing pools hashrate + Indexage des taux de hachage des pools src/app/components/indexing-progress/indexing-progress.component.html 3 @@ -2856,6 +2857,7 @@ Mining Dashboard + Tableau de bord de minage src/app/components/master-page/master-page.component.html 35,37 @@ -2935,6 +2937,7 @@ Reward stats + Statistiques de récompense src/app/components/mining-dashboard/mining-dashboard.component.html 10 @@ -2943,6 +2946,7 @@ (144 blocks) + (144 blocs) src/app/components/mining-dashboard/mining-dashboard.component.html 11 @@ -2973,6 +2977,7 @@ Pools Luck (1w) + Chance des pools (1 sem) src/app/components/pool-ranking/pool-ranking.component.html 8,12 @@ -2985,6 +2990,7 @@ Blocks (1w) + Blocs (1 sem) src/app/components/pool-ranking/pool-ranking.component.html 14,18 @@ -2997,6 +3003,7 @@ Pools Count (1w) + Nombre de pool (1 sem) src/app/components/pool-ranking/pool-ranking.component.html 20,24 @@ -3044,6 +3051,7 @@ blocks + blocs src/app/components/pool-ranking/pool-ranking.component.ts 160,158 @@ -3055,6 +3063,7 @@ Tags + Labels src/app/components/pool/pool.component.html 22,23 @@ -3086,11 +3095,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3105,6 +3114,7 @@ Hashrate (24h) + Taux de hachage (24h) src/app/components/pool/pool.component.html 91,93 @@ -3222,7 +3232,7 @@ 1w - 1w + 1 sem src/app/components/pool/pool.component.html 148 @@ -3235,6 +3245,7 @@ Coinbase tag + Label coinbase src/app/components/pool/pool.component.html 215,217 @@ -3265,6 +3276,7 @@ Transaction hex + Transaction hex src/app/components/push-transaction/push-transaction.component.html 6 @@ -3290,6 +3302,7 @@ Amount being paid to miners in the past 144 blocks + Montant versé aux mineurs dans les 144 derniers blocs src/app/components/reward-stats/reward-stats.component.html 6,8 @@ -3303,10 +3316,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3319,6 +3328,7 @@ Average miners' reward per transaction in the past 144 blocks + Récompense moyenne des mineurs par transaction au cours des 144 derniers blocs src/app/components/reward-stats/reward-stats.component.html 18,20 @@ -3327,6 +3337,7 @@ sats/tx + sats/tx src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -3338,8 +3349,17 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks + Frais payés en moyenne pour chaque transaction au cours des 144 derniers blocs src/app/components/reward-stats/reward-stats.component.html 31,32 @@ -3664,7 +3684,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3793,7 +3813,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3840,7 +3860,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3850,7 +3870,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3860,7 +3880,7 @@ Témoin src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3869,15 +3889,16 @@ Script de rachat P2SH src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script P2TR tapscript + P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3886,7 +3907,7 @@ Script témoin PW2SH src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3895,7 +3916,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3904,7 +3925,7 @@ Script de sortie précédent src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3913,7 +3934,7 @@ Script de sortie précédent src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3922,7 +3943,7 @@ Peg-out vers src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3931,7 +3952,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3941,11 +3962,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Cette transaction a économisé % sur les frais en utilisant SegWit-Bech32 natif diff --git a/frontend/src/locale/messages.he.xlf b/frontend/src/locale/messages.he.xlf index e5c9ea00c..6713f96bf 100644 --- a/frontend/src/locale/messages.he.xlf +++ b/frontend/src/locale/messages.he.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ בני ברית מהקהילה src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ תורמי הפרוייקט src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ חברי צוות הפרוייקט src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ מתחזקי הפרוייקט src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ לא וודאי src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - מ טרנזקציה + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - מ טרנזקציות + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ שגיאה בטעינת נתוני כתובת. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ חסוי src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - שגיאה בטעינת נתוני הבלוק. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : בלוק : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ פלט קודם src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ סוג פלט קודם src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ התפגר ל src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 טרנזקציה זו חסכה % בעמלות באמצעות שימוש בNative SegWit-Bech32 diff --git a/frontend/src/locale/messages.hi.xlf b/frontend/src/locale/messages.hi.xlf index bf36f3754..14e36b4ee 100644 --- a/frontend/src/locale/messages.hi.xlf +++ b/frontend/src/locale/messages.hi.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ सामुदायिक गठबंधन src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ परियोजना योगदानकर्ता src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ परियोजना सदस्य src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ परियोजना अनुरक्षक src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ अगोपनीय src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - लेनदेन + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - लेनदेन में से + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ डेटा लोड करने में त्रुटि. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ गुप्त src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - ब्लॉक डेटा लोड करने में गड़बड़ी. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : ब्लॉक : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ स्क्रिप्टसिग (एएसएम) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ स्क्रिप्टसिग (हेक्स) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ विटनेस src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH रिडीम स्क्रिप्ट src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH विटनेस स्क्रिप्ट src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nसीक्वेंस src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ पिछली आउटपुट स्क्रिप्ट src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ पिछला आउटपुट प्रकार src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ पेग-आउट से src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ स्क्रिप्टपबकी (एएसएम) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ स्क्रिप्टपबकी (हेक्स) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 इस लेन-देन ने मूल SegWit-Bech32 का उपयोग करके शुल्क पर % की बचत की diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index 39de4956c..e3512f2ff 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -250,7 +250,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -262,7 +262,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -278,7 +278,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -290,7 +290,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -397,11 +397,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -463,10 +459,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -504,8 +496,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -527,14 +519,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -714,7 +698,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -955,7 +939,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1007,7 +991,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1028,7 +1012,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1365,7 +1349,7 @@ Community Alliances src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1373,7 +1357,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1381,7 +1365,7 @@ Project Contributors src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1389,7 +1373,7 @@ Project Members src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1397,7 +1381,7 @@ Project Maintainers src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1431,23 +1415,23 @@ Unconfidential src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1455,15 +1439,15 @@ Error loading address data. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1471,7 +1455,7 @@ Confidential src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1487,7 +1471,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -1917,7 +1901,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -1960,11 +1944,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2107,7 +2087,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2256,19 +2236,23 @@ Transaction Details transaction.details - - Error loading block data. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : src/app/components/block/block.component.ts - 146 + 147 @@ -2293,10 +2277,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2315,7 +2295,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -2887,11 +2867,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3094,10 +3074,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3129,6 +3105,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3440,7 +3424,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3560,7 +3544,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3602,7 +3586,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3611,7 +3595,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3620,7 +3604,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3628,7 +3612,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3636,7 +3620,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3644,7 +3628,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3652,7 +3636,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3660,7 +3644,7 @@ Previous output script src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3668,7 +3652,7 @@ Previous output type src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3676,7 +3660,7 @@ Peg-out to src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3684,7 +3668,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3693,11 +3677,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 diff --git a/frontend/src/locale/messages.hu.xlf b/frontend/src/locale/messages.hu.xlf index 5cd43f302..6bdb14997 100644 --- a/frontend/src/locale/messages.hu.xlf +++ b/frontend/src/locale/messages.hu.xlf @@ -147,6 +147,7 @@ + node_modules/src/progressbar/progressbar.ts 59,63 @@ -250,6 +251,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -257,6 +259,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -279,7 +282,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +295,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +312,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +325,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +438,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +504,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +543,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +567,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +757,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1016,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1070,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1092,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1457,7 @@ Közösségi Szövetségesek src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1465,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1474,7 @@ Projekt Kontribútorok src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1483,7 @@ Projekt Tagok src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1492,7 @@ Projekt Fenntartók src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1528,23 @@ Nem bizalmas src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - a -ból/ből tranzakció + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - a -ból/ből tranzakciók + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1553,15 @@ Hiba történt a cím információ lekérdezésekor. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1570,7 @@ Bizalmas src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1586,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2044,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2088,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2235,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2393,24 @@ Transaction Details transaction.details - - Error loading block data. - Hiba történt a blokk infirmáció betöltésekor. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Blokk : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2436,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2455,7 @@ TXek src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3050,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3258,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3289,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3623,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3752,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3799,7 @@ SzkriptSzig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3809,7 @@ SzkriptSzig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3819,7 @@ Szemtanú src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3828,7 @@ P2SH kiváltási szkript src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3836,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3845,7 @@ P2WSH szemtanú szkript src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3854,7 @@ nSzekvencia src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3863,7 @@ Előző kimeneti szkript src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3872,7 @@ Előző kimeneti típúsok src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3881,7 @@ Kiváltás erre src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3890,7 @@ SzkriptPublikusKulcs (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3900,19 @@ SzkriptPublikusKulcs (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Ez a tranzakció % -nyi díjjat spórolt meg azzal, hogy native SegWit-Bech32-őt használt diff --git a/frontend/src/locale/messages.it.xlf b/frontend/src/locale/messages.it.xlf index 6aa2b8260..05eff814e 100644 --- a/frontend/src/locale/messages.it.xlf +++ b/frontend/src/locale/messages.it.xlf @@ -11,6 +11,7 @@ Slide of + Diapositiva di node_modules/src/carousel/carousel.ts 147,156 @@ -147,6 +148,7 @@ + node_modules/src/progressbar/progressbar.ts 59,63 @@ -250,6 +252,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -257,6 +260,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -279,7 +283,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +296,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +313,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +326,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +439,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +505,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +544,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +568,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -731,6 +719,7 @@ View more » + Scopri di più src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 92,97 @@ -770,7 +759,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1018,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1072,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1094,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1404,6 +1393,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. + 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 @@ -1451,6 +1441,7 @@ Self-Hosted Integrations + Integrazioni self-hosted src/app/components/about/about.component.html 173,175 @@ -1459,6 +1450,7 @@ Wallet Integrations + Integrazioni per portafogli src/app/components/about/about.component.html 207,209 @@ -1470,15 +1462,16 @@ Alleanze della comunità src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances Project Translators + Traduttori del progetto src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1480,7 @@ Hanno contribuito al progetto src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1489,7 @@ Membri del Progetto src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1498,7 @@ Manutentori del progetto src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1531,6 +1524,7 @@ Multisig of + Multisig di src/app/components/address-labels/address-labels.component.ts 121 @@ -1541,25 +1535,23 @@ Non Confidenziale src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - Transazione di + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - Transazioni di + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1560,15 @@ Errore nel caricamento dei dati dell'indirizzo. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1577,7 @@ Confidenziale src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1593,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -1796,6 +1788,7 @@ Featured + In primo piano src/app/components/assets/assets-nav/assets-nav.component.html 9 @@ -1803,6 +1796,7 @@ All + Tutti src/app/components/assets/assets-nav/assets-nav.component.html 13 @@ -2002,6 +1996,7 @@ Block Fees + Costi del blocco src/app/components/block-fees-graph/block-fees-graph.component.html 5,7 @@ -2059,7 +2054,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2098,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2245,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2403,24 @@ Transaction Details transaction.details - - Error loading block data. - Si è verificato un errore durante il caricamento dei dati del blocco. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Blocco : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2446,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2465,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -2618,6 +2608,7 @@ Next Halving + Prossimo Halving src/app/components/difficulty/difficulty.component.html 50,52 @@ -2925,6 +2916,7 @@ Reward stats + Statistiche di ricompensa src/app/components/mining-dashboard/mining-dashboard.component.html 10 @@ -3006,6 +2998,7 @@ Empty blocks + Blocchi vuoti src/app/components/pool-ranking/pool-ranking.component.html 89,92 @@ -3014,6 +3007,7 @@ All miners + Tutti i minatori src/app/components/pool-ranking/pool-ranking.component.html 107,108 @@ -3022,6 +3016,7 @@ Mining Pools + Pool dei minatori src/app/components/pool-ranking/pool-ranking.component.ts 55 @@ -3029,6 +3024,7 @@ blocks + blocchi src/app/components/pool-ranking/pool-ranking.component.ts 160,158 @@ -3040,6 +3036,7 @@ Tags + Tags src/app/components/pool/pool.component.html 22,23 @@ -3060,6 +3057,7 @@ Show all + Mostra tutto src/app/components/pool/pool.component.html 53,55 @@ -3070,16 +3068,17 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all Hide + Nascondi src/app/components/pool/pool.component.html 55,58 @@ -3088,6 +3087,7 @@ Hashrate (24h) + Hashrate (24ore) src/app/components/pool/pool.component.html 91,93 @@ -3108,6 +3108,7 @@ Estimated + Stimata src/app/components/pool/pool.component.html 96,97 @@ -3128,6 +3129,7 @@ Reported + Riportata src/app/components/pool/pool.component.html 97,98 @@ -3168,6 +3170,7 @@ Mined blocks + Blocchi minati src/app/components/pool/pool.component.html 141,143 @@ -3188,6 +3191,7 @@ 24h + 24h src/app/components/pool/pool.component.html 147 @@ -3200,6 +3204,7 @@ 1w + 1set src/app/components/pool/pool.component.html 148 @@ -3274,14 +3279,11 @@ Reward Per Tx + Premio per transazione src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3302,6 +3304,7 @@ sats/tx + sats/trans src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -3313,6 +3316,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3650,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3779,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3826,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3836,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3846,7 @@ Testimone src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3855,7 @@ Script di riscatto P2SH src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3863,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3872,7 @@ Script testimone P2WSH src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3881,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3890,7 @@ Script output precedente src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3899,7 @@ Tipo di output precedente src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3908,7 @@ Peg-out a src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3917,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3927,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Questa transazione ha risparmiato % sulle commissioni utilizzando SegWit-Bech32 nativo diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index eaf53ed86..06d1298da 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -11,6 +11,7 @@ Slide of + 枚のスライドのうちの枚目 node_modules/src/carousel/carousel.ts 147,156 @@ -147,6 +148,7 @@ + node_modules/src/progressbar/progressbar.ts 59,63 @@ -250,6 +252,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -257,6 +260,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -279,7 +283,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +296,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +313,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +326,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +439,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +505,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +544,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +568,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -731,6 +719,7 @@ View more » + 詳細を表示 » src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 92,97 @@ -770,7 +759,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1018,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1072,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1094,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1404,6 +1393,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 @@ -1451,6 +1441,7 @@ Self-Hosted Integrations + セルフ・ホスティング統合 src/app/components/about/about.component.html 173,175 @@ -1459,6 +1450,7 @@ Wallet Integrations + ウォレット統合 src/app/components/about/about.component.html 207,209 @@ -1470,15 +1462,16 @@ コミュニティーの提携 src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances Project Translators + プロジェクト翻訳者 src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1480,7 @@ プロジェクト貢献者 src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1489,7 @@ プロジェクトメンバー src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1498,7 @@ プロジェクトメンテナー src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1531,6 +1524,7 @@ Multisig of + のマルチシグ src/app/components/address-labels/address-labels.component.ts 121 @@ -1541,25 +1535,25 @@ 機密なし src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - 件のトランザクションのうちの + of transaction + / トランザクション src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - 件のトランザクションのうちの + of transactions + / トランザクション src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1562,16 @@ アドレスデータを読み込み中にエラーが発生しました。 src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + このアドレスにトランザクションが多すぎてバックエンドが処理できません。より強いバックエンドを整えるについて詳しくはここから代わりに、このアドレスをMempoolの公式サイトで閲覧できます: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1580,7 @@ 機密 src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1596,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -1764,6 +1759,7 @@ Group of assets + つ資産のグループ src/app/components/assets/asset-group/asset-group.component.html 8,9 @@ -1796,6 +1792,7 @@ Featured + 取り上げられている src/app/components/assets/assets-nav/assets-nav.component.html 9 @@ -1803,6 +1800,7 @@ All + すべて src/app/components/assets/assets-nav/assets-nav.component.html 13 @@ -1986,6 +1984,7 @@ Block Fee Rates + ブロック手数料率 src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 5,7 @@ -2002,6 +2001,7 @@ Block Fees + ブロック手数料 src/app/components/block-fees-graph/block-fees-graph.component.html 5,7 @@ -2018,6 +2018,7 @@ Fees + 手数料 src/app/components/block-fees-graph/block-fees-graph.component.ts 160,158 @@ -2037,6 +2038,7 @@ Block Rewards + ブロック報酬 src/app/components/block-rewards-graph/block-rewards-graph.component.html 6,8 @@ -2053,13 +2055,14 @@ Reward + 報酬 src/app/components/block-rewards-graph/block-rewards-graph.component.ts 160,158 src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2072,6 +2075,7 @@ Block Sizes and Weights + ブロックサイズとウェイト src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html 4,6 @@ -2103,11 +2107,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2254,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,25 +2412,29 @@ Transaction Details transaction.details - - Error loading block data. - ブロックデータを読み込み中にエラーが発生しました。 + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : ブロック src/app/components/block/block.component.ts - 146 + 147 Pool + プール src/app/components/blocks-list/blocks-list.component.html 12,13 @@ -2452,10 +2456,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2475,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -2505,6 +2505,7 @@ Adjusted + 補正の時間 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 6,8 @@ -2513,6 +2514,7 @@ Change + 変更 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 8,11 @@ -2547,6 +2549,7 @@ blocks + ブロック src/app/components/difficulty/difficulty.component.html 10,11 @@ -2567,6 +2570,7 @@ block + ブロック src/app/components/difficulty/difficulty.component.html 11,12 @@ -2618,6 +2622,7 @@ Next Halving + 次の半減 src/app/components/difficulty/difficulty.component.html 50,52 @@ -2729,6 +2734,7 @@ Mining + マイニング src/app/components/graphs/graphs.component.html 5 @@ -2737,6 +2743,7 @@ Pools Ranking + プールのランキング src/app/components/graphs/graphs.component.html 8 @@ -2749,6 +2756,7 @@ Pools Dominance + プールの優勢 src/app/components/graphs/graphs.component.html 10 @@ -2761,6 +2769,7 @@ Hashrate & Difficulty + ハッシュレートと採掘難易度 src/app/components/graphs/graphs.component.html 12 @@ -2777,6 +2786,7 @@ Hashrate + ハッシュレート src/app/components/hashrate-chart/hashrate-chart.component.html 8,10 @@ -2801,6 +2811,7 @@ Pools Historical Dominance + プールの優勢履歴 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 63 @@ -2808,6 +2819,7 @@ Indexing blocks + ブロック索引付け中 src/app/components/indexing-progress/indexing-progress.component.html 1 @@ -2815,6 +2827,7 @@ Indexing network hashrate + ネットワークハッシュレート索引付け中 src/app/components/indexing-progress/indexing-progress.component.html 2 @@ -2822,6 +2835,7 @@ Indexing pools hashrate + プールのハッシュレート索引付け中 src/app/components/indexing-progress/indexing-progress.component.html 3 @@ -2846,6 +2860,7 @@ Mining Dashboard + マイニング・ダッシュボード src/app/components/master-page/master-page.component.html 35,37 @@ -2925,6 +2940,7 @@ Reward stats + 報酬の統計値 src/app/components/mining-dashboard/mining-dashboard.component.html 10 @@ -2933,6 +2949,7 @@ (144 blocks) + (144つのブロック) src/app/components/mining-dashboard/mining-dashboard.component.html 11 @@ -2954,6 +2971,7 @@ Adjustments + 補正 src/app/components/mining-dashboard/mining-dashboard.component.html 63 @@ -2962,6 +2980,7 @@ Pools Luck (1w) + プールの運(1週間) src/app/components/pool-ranking/pool-ranking.component.html 8,12 @@ -2974,6 +2993,7 @@ Blocks (1w) + ブロック(1週間) src/app/components/pool-ranking/pool-ranking.component.html 14,18 @@ -2986,6 +3006,7 @@ Pools Count (1w) + プール数(1週間) src/app/components/pool-ranking/pool-ranking.component.html 20,24 @@ -2998,6 +3019,7 @@ Rank + ランク src/app/components/pool-ranking/pool-ranking.component.html 84,86 @@ -3006,6 +3028,7 @@ Empty blocks + 空ブロック src/app/components/pool-ranking/pool-ranking.component.html 89,92 @@ -3014,6 +3037,7 @@ All miners + すべてのマイナー src/app/components/pool-ranking/pool-ranking.component.html 107,108 @@ -3022,6 +3046,7 @@ Mining Pools + マイニングプール src/app/components/pool-ranking/pool-ranking.component.ts 55 @@ -3029,6 +3054,7 @@ blocks + のブロック src/app/components/pool-ranking/pool-ranking.component.ts 160,158 @@ -3040,6 +3066,7 @@ Tags + タグ src/app/components/pool/pool.component.html 22,23 @@ -3060,6 +3087,7 @@ Show all + すべてを表示 src/app/components/pool/pool.component.html 53,55 @@ -3070,16 +3098,17 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all Hide + 非表示 src/app/components/pool/pool.component.html 55,58 @@ -3088,6 +3117,7 @@ Hashrate (24h) + ハッシュレート(24時間) src/app/components/pool/pool.component.html 91,93 @@ -3108,6 +3138,7 @@ Estimated + 推定 src/app/components/pool/pool.component.html 96,97 @@ -3128,6 +3159,7 @@ Reported + 報告 src/app/components/pool/pool.component.html 97,98 @@ -3148,6 +3180,7 @@ Luck + src/app/components/pool/pool.component.html 98,101 @@ -3168,6 +3201,7 @@ Mined blocks + マイニングされたブロック src/app/components/pool/pool.component.html 141,143 @@ -3188,6 +3222,7 @@ 24h + 24時間 src/app/components/pool/pool.component.html 147 @@ -3200,6 +3235,7 @@ 1w + 1週間 src/app/components/pool/pool.component.html 148 @@ -3212,6 +3248,7 @@ Coinbase tag + コインベース・タグ src/app/components/pool/pool.component.html 215,217 @@ -3242,6 +3279,7 @@ Transaction hex + トランザクションの16進値 src/app/components/push-transaction/push-transaction.component.html 6 @@ -3254,6 +3292,7 @@ Miners Reward + マイナー報酬 src/app/components/reward-stats/reward-stats.component.html 4,6 @@ -3266,6 +3305,7 @@ Amount being paid to miners in the past 144 blocks + 以前の144つブロックにマイナーへの払込金額 src/app/components/reward-stats/reward-stats.component.html 6,8 @@ -3274,14 +3314,11 @@ Reward Per Tx + Txあたりの報酬 src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3294,6 +3331,7 @@ Average miners' reward per transaction in the past 144 blocks + 以前の144つブロックに平均マイナー報酬 src/app/components/reward-stats/reward-stats.component.html 18,20 @@ -3302,6 +3340,7 @@ sats/tx + サトシ/tx src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -3313,8 +3352,18 @@ sat/vB shared.sat-vbyte + + Average Fee + 平均手数料 + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks + 以前の144つブロックで各トランザクションに支払った平均手数料 src/app/components/reward-stats/reward-stats.component.html 31,32 @@ -3639,7 +3688,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3817,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3864,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3874,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3884,7 @@ ウィットネス src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,15 +3893,16 @@ P2SH引き換えスクリプト src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script P2TR tapscript + P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3911,7 @@ P2WSHウィットネススクリプト src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3920,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3929,7 @@ 前の出力スクリプト src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3938,7 @@ 以前の出力タイプ src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3947,7 @@ へのペグアウト src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3956,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3966,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 このトランザクションでは、ネイティブのSegWit-Bech32を使用することで、手数料を%節約できました。 diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf index fe3e7df1c..8d92b6b40 100644 --- a/frontend/src/locale/messages.ka.xlf +++ b/frontend/src/locale/messages.ka.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ ალიანსი src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ მოხალისეები src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ პროექტის წევრები src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ პროექტის შემქმნელები src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ არაკონფიდენციალური src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - of ტრანსაქცია + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - of ტრანზაქციები + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ შეცდომა მისამართის მონაცემების მოძებვნისას. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ კონფიდენციალური src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - შეცდომა მონაცემების მოძებვნაზე + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : ბლოკი: src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ ტრანზაქცია src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ Previous output script src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ Previous output type src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ Peg-out to src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 ტრანსაქციამ შეძლო % საკომისიოს ეკონომია, native SegWit-Bech32 ის გამოყენებით diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf index 2f6408f2e..9aecc49b1 100644 --- a/frontend/src/locale/messages.ko.xlf +++ b/frontend/src/locale/messages.ko.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ 커뮤니티 연합 src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ 프로젝트 참여자 목록 src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ 프로젝트 멤버들 src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ 프로젝트 관리자 목록 src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ 비기밀 src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - 트랜잭션 / + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - 트랜잭션 / + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ 주소 데이터 불러오기 실패 src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ 기밀 src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - 블록 데이터 불러오기 실패 + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : 블록 : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ 트랜잭션 src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ 증인 (디지털 서명) src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH 사용 스크립트 src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH 증인 스크립트 src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ 이전 아웃풋 스크립트 src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ 이전 아웃풋 유형 src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ 로 페그아웃 src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 이 트랜잭션은 native SegWit-Bech32를 사용하여 수수료를 % 절약했습니다 diff --git a/frontend/src/locale/messages.mk.xlf b/frontend/src/locale/messages.mk.xlf index e66a0fe4b..b220ef044 100644 --- a/frontend/src/locale/messages.mk.xlf +++ b/frontend/src/locale/messages.mk.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ Соработка со Заедницата src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ Контрибутори src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ Членови на проектот src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ Одржувачи на проектот src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ Недоверлива src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - од трансакција + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - од трансакции + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ Грешка во вчитување податоци за адресата. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ Доверливо src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - Грешка во вчитување на податоците за блокот. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Блок : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ Трансакции src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Сведок src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ Претходни излезни скрипти src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ Претходен тип на излезот src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ Peg-out кон src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Оваа трансакција заштеди % во провизии со користење на SegWit-Bech32 diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index 6ed1ff8f1..45782c9c1 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ Samfunnsallianser src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ Bidragsytere til prosjektet src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ Prosjektmedlemmer src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ Prosjektvedlikeholdere src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ Ukonfidensielt src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - av transaksjon + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - av transaksjoner + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ Lasting av adressedata feilet. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ Konfidensielt src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - Lasting av blokkdata feilet. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Blokk : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig(ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig(HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ Forrige utgangs-script src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ Tidligere utdatatype src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ Peg-out til src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Denne transaksjonen sparte % på avgifter ved å bruke native SegWit-Bech32 diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index 0daf26319..6089a231e 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -283,7 +283,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -296,7 +296,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -313,7 +313,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -326,7 +326,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -439,11 +439,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -509,10 +505,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -552,8 +544,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -576,14 +568,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -775,7 +759,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1034,7 +1018,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1088,7 +1072,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1110,7 +1094,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1478,7 +1462,7 @@ Community-allianties src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1487,7 +1471,7 @@ Projectvertalers src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1496,7 +1480,7 @@ Projectbijdragers src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1505,7 +1489,7 @@ Projectleden src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1514,7 +1498,7 @@ Projectonderhouders src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1551,25 +1535,23 @@ Niet-vertrouwelijk src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - van transactie + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - van transacties + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1578,16 +1560,15 @@ Fout bij het laden van adresdata. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: - Er zijn veel transacties op dit adres, meer dan jouw systeem aankan. Lees meer op over het opzetten van een sterkere backend . Overweeg om dit adres op de officiële Mempoolwebsite te bekijken: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1596,7 +1577,7 @@ Vertrouwelijk src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1612,7 +1593,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2078,7 +2059,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2123,11 +2104,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2274,7 +2251,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2432,21 +2409,24 @@ Transaction Details transaction.details - - Error loading block data. - Fout bij het laden van de blokdata. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Blok : src/app/components/block/block.component.ts - 146 + 147 @@ -2473,10 +2453,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2496,7 +2472,7 @@ TX's src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3119,11 +3095,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3340,10 +3316,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3377,6 +3349,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks Gemiddeld betaalde transactiekosten per transactie in de laatste 144 blokken @@ -3704,7 +3684,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3833,7 +3813,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3880,7 +3860,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3890,7 +3870,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3900,7 +3880,7 @@ Getuige-data src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3909,7 +3889,7 @@ P2SH claim-script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3918,7 +3898,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3927,7 +3907,7 @@ P2WSH claim-script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3936,7 +3916,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3945,7 +3925,7 @@ Vorig output-script src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3954,7 +3934,7 @@ Vorig output-type src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3963,7 +3943,7 @@ Peg-out naar src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3972,7 +3952,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3982,11 +3962,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Deze transactie heeft % aan vergoedingen bespaard door native SegWit-Bech32 te gebruiken diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index 7a2e17953..fb6662f6d 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -11,6 +11,7 @@ Slide of + Slajd z node_modules/src/carousel/carousel.ts 147,156 @@ -147,6 +148,7 @@ + node_modules/src/progressbar/progressbar.ts 59,63 @@ -250,6 +252,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -257,6 +260,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -279,7 +283,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +296,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +313,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +326,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +439,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +505,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +544,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +568,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -731,6 +719,7 @@ View more » + Pokaż więcej » src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 92,97 @@ -770,7 +759,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1018,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1072,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1094,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1404,6 +1393,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. + Nasz, koncentrujący się na rynku opłat i wielowarstwowym ekosystemie, eksplorator blockchaina i mempoola dla bitcoinowej społeczności, całkowicie self-hosted, bez zaufanych stron trzecich. src/app/components/about/about.component.html 13,17 @@ -1451,6 +1441,7 @@ Self-Hosted Integrations + Integracje w self-hostingu src/app/components/about/about.component.html 173,175 @@ -1459,6 +1450,7 @@ Wallet Integrations + Integracje z portfelami src/app/components/about/about.component.html 207,209 @@ -1470,15 +1462,16 @@ Sojusze społecznościowe src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances Project Translators + Tłumacze projektu src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1480,7 @@ Współtwórcy projektu src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1489,7 @@ Członkowie projektu src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1498,7 @@ Opiekunowie projektu src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1531,6 +1524,7 @@ Multisig of + Multisig z src/app/components/address-labels/address-labels.component.ts 121 @@ -1541,25 +1535,25 @@ Niepoufne src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - transakcja z + of transaction + z transakcji src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - transakcje z + of transactions + z transakcji src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1562,16 @@ Błąd podczas ładowania adresu. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + Pod tym adresem jest zbyt wiele transakcji by Twój system backend mógł sobie z tym poradzić. Zobacz więcej na konfigurowanie silniejszego systemu backend. Rozważ obejrzenie tego adresu na oficjalnej stronie Mempool: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1580,7 @@ Poufne src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1596,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -1764,6 +1759,7 @@ Group of assets + Grupa aktywów src/app/components/assets/asset-group/asset-group.component.html 8,9 @@ -1796,6 +1792,7 @@ Featured + Wyróżnienia src/app/components/assets/assets-nav/assets-nav.component.html 9 @@ -1803,6 +1800,7 @@ All + Wszystko src/app/components/assets/assets-nav/assets-nav.component.html 13 @@ -1986,6 +1984,7 @@ Block Fee Rates + Stawki opłat bloku src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 5,7 @@ -2002,6 +2001,7 @@ Block Fees + Opłaty bloku src/app/components/block-fees-graph/block-fees-graph.component.html 5,7 @@ -2018,6 +2018,7 @@ Fees + Opłaty src/app/components/block-fees-graph/block-fees-graph.component.ts 160,158 @@ -2037,6 +2038,7 @@ Block Rewards + Nagrody bloku src/app/components/block-rewards-graph/block-rewards-graph.component.html 6,8 @@ -2053,13 +2055,14 @@ Reward + Nagroda src/app/components/block-rewards-graph/block-rewards-graph.component.ts 160,158 src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2072,6 +2075,7 @@ Block Sizes and Weights + Rozmiary i wagi bloku src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html 4,6 @@ -2103,11 +2107,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2254,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,25 +2412,30 @@ Transaction Details transaction.details - - Error loading block data. - Błąd podczas ładowania danych bloku. + + Error loading data. + Błąd ładowania danych. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Blok : src/app/components/block/block.component.ts - 146 + 147 Pool + Kolektyw wydobywczy src/app/components/blocks-list/blocks-list.component.html 12,13 @@ -2452,10 +2457,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2476,7 @@ Transakcje src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -2505,6 +2506,7 @@ Adjusted + Dostosowanie src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 6,8 @@ -2513,6 +2515,7 @@ Change + Zmiana src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 8,11 @@ -2547,6 +2550,7 @@ blocks + bloków src/app/components/difficulty/difficulty.component.html 10,11 @@ -2567,6 +2571,7 @@ block + blok src/app/components/difficulty/difficulty.component.html 11,12 @@ -2618,6 +2623,7 @@ Next Halving + Następny halving src/app/components/difficulty/difficulty.component.html 50,52 @@ -2729,6 +2735,7 @@ Mining + Wydobycie src/app/components/graphs/graphs.component.html 5 @@ -2737,6 +2744,7 @@ Pools Ranking + Ranking kolektywów wydobywczych src/app/components/graphs/graphs.component.html 8 @@ -2749,6 +2757,7 @@ Pools Dominance + Dominacja kolektywów wydobywczych src/app/components/graphs/graphs.component.html 10 @@ -2761,6 +2770,7 @@ Hashrate & Difficulty + Prędkość haszowania i trudność src/app/components/graphs/graphs.component.html 12 @@ -2777,6 +2787,7 @@ Hashrate + Prędkość haszowania src/app/components/hashrate-chart/hashrate-chart.component.html 8,10 @@ -2801,6 +2812,7 @@ Pools Historical Dominance + Historyczna dominacja kolektywów wydobywczych src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 63 @@ -2808,6 +2820,7 @@ Indexing blocks + Indeksowanie bloków src/app/components/indexing-progress/indexing-progress.component.html 1 @@ -2815,6 +2828,7 @@ Indexing network hashrate + Indeksowanie prędkości haszowania sieci src/app/components/indexing-progress/indexing-progress.component.html 2 @@ -2822,6 +2836,7 @@ Indexing pools hashrate + Indeksowanie prędkości haszowania kolektywu wydobywczego src/app/components/indexing-progress/indexing-progress.component.html 3 @@ -2846,6 +2861,7 @@ Mining Dashboard + Deska rozdzielcza wydobycia src/app/components/master-page/master-page.component.html 35,37 @@ -2925,6 +2941,7 @@ Reward stats + Statystyki nagród src/app/components/mining-dashboard/mining-dashboard.component.html 10 @@ -2933,6 +2950,7 @@ (144 blocks) + (144 bloków) src/app/components/mining-dashboard/mining-dashboard.component.html 11 @@ -2954,6 +2972,7 @@ Adjustments + Dostosowania src/app/components/mining-dashboard/mining-dashboard.component.html 63 @@ -2962,6 +2981,7 @@ Pools Luck (1w) + Szczęście kolektywu (1t) src/app/components/pool-ranking/pool-ranking.component.html 8,12 @@ -2974,6 +2994,7 @@ Blocks (1w) + Blocków (1t) src/app/components/pool-ranking/pool-ranking.component.html 14,18 @@ -2986,6 +3007,7 @@ Pools Count (1w) + Liczba kolektywów wydobywczych (1t) src/app/components/pool-ranking/pool-ranking.component.html 20,24 @@ -2998,6 +3020,7 @@ Rank + Ranga src/app/components/pool-ranking/pool-ranking.component.html 84,86 @@ -3006,6 +3029,7 @@ Empty blocks + Puste bloki src/app/components/pool-ranking/pool-ranking.component.html 89,92 @@ -3014,6 +3038,7 @@ All miners + Wszyscy wydobywcy src/app/components/pool-ranking/pool-ranking.component.html 107,108 @@ -3022,6 +3047,7 @@ Mining Pools + Kolektywy wydobywcze src/app/components/pool-ranking/pool-ranking.component.ts 55 @@ -3029,6 +3055,7 @@ blocks + blocków src/app/components/pool-ranking/pool-ranking.component.ts 160,158 @@ -3040,6 +3067,7 @@ Tags + Tagi src/app/components/pool/pool.component.html 22,23 @@ -3060,6 +3088,7 @@ Show all + Pokaż wszystko src/app/components/pool/pool.component.html 53,55 @@ -3070,16 +3099,17 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all Hide + Schowaj src/app/components/pool/pool.component.html 55,58 @@ -3088,6 +3118,7 @@ Hashrate (24h) + Prędkość haszowania (24h) src/app/components/pool/pool.component.html 91,93 @@ -3108,6 +3139,7 @@ Estimated + Oszacowana src/app/components/pool/pool.component.html 96,97 @@ -3128,6 +3160,7 @@ Reported + Odnotowana src/app/components/pool/pool.component.html 97,98 @@ -3148,6 +3181,7 @@ Luck + Szczęście src/app/components/pool/pool.component.html 98,101 @@ -3168,6 +3202,7 @@ Mined blocks + Wydobyte bloki src/app/components/pool/pool.component.html 141,143 @@ -3188,6 +3223,7 @@ 24h + 24h src/app/components/pool/pool.component.html 147 @@ -3200,6 +3236,7 @@ 1w + 1t src/app/components/pool/pool.component.html 148 @@ -3212,6 +3249,7 @@ Coinbase tag + Tag Coinbase src/app/components/pool/pool.component.html 215,217 @@ -3242,6 +3280,7 @@ Transaction hex + Postać szestnastkowa transakcji src/app/components/push-transaction/push-transaction.component.html 6 @@ -3254,6 +3293,7 @@ Miners Reward + Nagroda wydobywców src/app/components/reward-stats/reward-stats.component.html 4,6 @@ -3266,6 +3306,7 @@ Amount being paid to miners in the past 144 blocks + Kwota zapłacona wydobywcom w ostatnich 144 blokach src/app/components/reward-stats/reward-stats.component.html 6,8 @@ -3274,14 +3315,11 @@ Reward Per Tx + Nagroda na transakcję src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3294,6 +3332,7 @@ Average miners' reward per transaction in the past 144 blocks + Średnia nagroda wydobywcy na transakcję w ostatnich 144 blokach src/app/components/reward-stats/reward-stats.component.html 18,20 @@ -3302,6 +3341,7 @@ sats/tx + satoshi/transakcję src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -3313,8 +3353,18 @@ sat/vB shared.sat-vbyte + + Average Fee + Średni poziom opłat + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks + Średni poziom opłaty poniesionej w każdej transakcji w ostatnich 144 blokach src/app/components/reward-stats/reward-stats.component.html 31,32 @@ -3363,7 +3413,7 @@ Waiting for transaction... - Oczekiwanie na transakcje... + Oczekiwanie na transakcję... src/app/components/sponsor/sponsor.component.html 142 @@ -3639,7 +3689,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3818,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,17 +3865,17 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm ScriptSig (HEX) - ScriptSig (HEX) + ScriptSig (Postać szestnastkowa) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3885,7 @@ Świadek src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,15 +3894,16 @@ Skrypt realizacji P2SH src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script P2TR tapscript + P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3912,7 @@ Skrypt świadka P2WSH src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3921,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3930,7 @@ Poprzedni skrypt wyjściowy src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3939,7 @@ Poprzedni typ wyjścia src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3948,7 @@ Peg-out do src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,21 +3957,30 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm ScriptPubKey (HEX) - ScriptPubKey (HEX) + ScriptPubKey (Postać szestnastkowa) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + Pokaż wszystkie wejścia by ujawnić dane o opłatach + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Ta transakcja pozwoliła zaoszczędzić % na opłatach za pomocą natywnego SegWit-Bech32 diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index b79eadbb0..56ab21036 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -283,7 +283,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -296,7 +296,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -313,7 +313,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -326,7 +326,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -439,11 +439,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -509,10 +505,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -552,8 +544,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -576,14 +568,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -775,7 +759,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1034,7 +1018,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1088,7 +1072,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1110,7 +1094,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1478,7 +1462,7 @@ Alianças da comunidade src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1487,7 +1471,7 @@ Tradutores do Projeto src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1496,7 +1480,7 @@ Contribuidores do projeto src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1505,7 +1489,7 @@ Membros do Projeto src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1514,7 +1498,7 @@ Mantenedores do projeto src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1551,25 +1535,25 @@ Não confidencial src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - de transação + of transaction + of transação src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - de transações + of transactions + of transações src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1578,16 +1562,16 @@ Erro ao carregar os dados do endereço. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: - Existem muitas transações neste endereço, mais do que seu backend pode lidar. Veja mais em sobre como configurar um backend mais poderoso.. Considere ver este endereço no site oficial do Mempool: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + Existem muitas transações neste endereço, mais do que seu backend pode lidar. Veja mais em sobre como configurar um backend mais poderoso. Considere ver este endereço no site oficial do Mempool: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1596,7 +1580,7 @@ Confidencial src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1612,7 +1596,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2078,7 +2062,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2123,11 +2107,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2274,7 +2254,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2432,21 +2412,25 @@ Transaction Details transaction.details - - Error loading block data. - Erro ao carregar os dados do bloco. + + Error loading data. + Erro ao carregar dados. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Bloco : src/app/components/block/block.component.ts - 146 + 147 @@ -2473,10 +2457,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2496,7 +2476,7 @@ Transações src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3119,11 +3099,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3340,10 +3320,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3377,6 +3353,15 @@ sat/vB shared.sat-vbyte + + Average Fee + Taxa Média + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks Taxa paga em média para cada transação nos últimos 144 blocos @@ -3704,7 +3689,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3833,7 +3818,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3880,7 +3865,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3890,7 +3875,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3900,7 +3885,7 @@ Testemunho src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3909,7 +3894,7 @@ P2SH script de resgate src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3918,7 +3903,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3927,7 +3912,7 @@ P2WSH script de testemunho src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3936,7 +3921,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3945,7 +3930,7 @@ Script de saída anterior src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3954,7 +3939,7 @@ Tipo de saída anterior src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3963,7 +3948,7 @@ Peg-out para src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3972,7 +3957,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3982,11 +3967,20 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + Exibir todas as entradas para revelar dados de taxas + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Essa transação economizou % em taxas por usar SegWit-Bech32 nativo. diff --git a/frontend/src/locale/messages.ro.xlf b/frontend/src/locale/messages.ro.xlf index 31df626e2..7b6ab45fa 100644 --- a/frontend/src/locale/messages.ro.xlf +++ b/frontend/src/locale/messages.ro.xlf @@ -11,6 +11,7 @@ Slide of + Pagina din node_modules/src/carousel/carousel.ts 147,156 @@ -147,6 +148,7 @@ + node_modules/src/progressbar/progressbar.ts 59,63 @@ -250,6 +252,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -257,6 +260,7 @@ + node_modules/src/timepicker/timepicker.ts 295 @@ -279,7 +283,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +296,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +313,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +326,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +439,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +505,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +544,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +568,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -731,6 +719,7 @@ View more » + Vezi mai multe » src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 92,97 @@ -770,7 +759,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1018,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1072,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1094,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1404,6 +1393,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. + Exploratorul nostru de mempool și blockchain pentru comunitatea Bitcoin, focusat pe piața comisioanelor de tranzacționat și pe ecosistemul multi-strat, auto-găzduit fără terțe părți. src/app/components/about/about.component.html 13,17 @@ -1451,6 +1441,7 @@ Self-Hosted Integrations + Integrări auto-găzduite src/app/components/about/about.component.html 173,175 @@ -1459,6 +1450,7 @@ Wallet Integrations + Integrări portofel src/app/components/about/about.component.html 207,209 @@ -1470,15 +1462,16 @@ Alianțe din Comunitate src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances Project Translators + Traducători ai proiectului src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1480,7 @@ Contribuitori ai proiectului src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1489,7 @@ Membrii Proiectului src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1498,7 @@ Întreținători ai proiectului src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1531,6 +1524,7 @@ Multisig of + Multisig din src/app/components/address-labels/address-labels.component.ts 121 @@ -1541,25 +1535,25 @@ Neconfidențial src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - tranzacția din + of transaction + tranzacție din src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - tranzacțiile din + of transactions + tranzacții din src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1562,16 @@ Eroare la încărcarea datelor adresei. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + Sunt multe tranzacții în această adresă, mai multe decât poate prelucra nodul tău. Vezi mai multe instalezi un nod mai puternic. Consideră vizualizarea acestei adrese pe site-ul oficial Mempool: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1580,7 @@ Confidenţial src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1596,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -1764,6 +1759,7 @@ Group of assets + Grup de active src/app/components/assets/asset-group/asset-group.component.html 8,9 @@ -1796,6 +1792,7 @@ Featured + Recomandat src/app/components/assets/assets-nav/assets-nav.component.html 9 @@ -1803,6 +1800,7 @@ All + Toate src/app/components/assets/assets-nav/assets-nav.component.html 13 @@ -1986,6 +1984,7 @@ Block Fee Rates + Valori comisioane de bloc src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 5,7 @@ -2002,6 +2001,7 @@ Block Fees + Comisioane de bloc src/app/components/block-fees-graph/block-fees-graph.component.html 5,7 @@ -2018,6 +2018,7 @@ Fees + Comisioane src/app/components/block-fees-graph/block-fees-graph.component.ts 160,158 @@ -2037,6 +2038,7 @@ Block Rewards + Recompense de bloc src/app/components/block-rewards-graph/block-rewards-graph.component.html 6,8 @@ -2053,13 +2055,14 @@ Reward + Recompensă src/app/components/block-rewards-graph/block-rewards-graph.component.ts 160,158 src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2072,6 +2075,7 @@ Block Sizes and Weights + Mărimi si Greutăți de bloc src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html 4,6 @@ -2103,11 +2107,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2254,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,25 +2412,30 @@ Transaction Details transaction.details - - Error loading block data. - Eroare la încărcarea datelor blocului. + + Error loading data. + Eroare la încărcarea datelor. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Bloc : src/app/components/block/block.component.ts - 146 + 147 Pool + Fond comun src/app/components/blocks-list/blocks-list.component.html 12,13 @@ -2452,10 +2457,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2476,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -2505,6 +2506,7 @@ Adjusted + Ajustat src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 6,8 @@ -2513,6 +2515,7 @@ Change + Schimbă src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 8,11 @@ -2547,6 +2550,7 @@ blocks + blocuri src/app/components/difficulty/difficulty.component.html 10,11 @@ -2567,6 +2571,7 @@ block + bloc src/app/components/difficulty/difficulty.component.html 11,12 @@ -2618,6 +2623,7 @@ Next Halving + Înjumătățirea următoare src/app/components/difficulty/difficulty.component.html 50,52 @@ -2729,6 +2735,7 @@ Mining + Minerit src/app/components/graphs/graphs.component.html 5 @@ -2737,6 +2744,7 @@ Pools Ranking + Clasament Fonduri src/app/components/graphs/graphs.component.html 8 @@ -2749,6 +2757,7 @@ Pools Dominance + Dominanță Fonduri src/app/components/graphs/graphs.component.html 10 @@ -2761,6 +2770,7 @@ Hashrate & Difficulty + Rată hash & Dificultate src/app/components/graphs/graphs.component.html 12 @@ -2777,6 +2787,7 @@ Hashrate + Rată hash src/app/components/hashrate-chart/hashrate-chart.component.html 8,10 @@ -2801,6 +2812,7 @@ Pools Historical Dominance + Dominanță istorică a Fondurilor src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 63 @@ -2808,6 +2820,7 @@ Indexing blocks + Indexare blocuri src/app/components/indexing-progress/indexing-progress.component.html 1 @@ -2815,6 +2828,7 @@ Indexing network hashrate + Indexare rata de hash a rețelei src/app/components/indexing-progress/indexing-progress.component.html 2 @@ -2822,6 +2836,7 @@ Indexing pools hashrate + Indexare rata de hash a fondurilor src/app/components/indexing-progress/indexing-progress.component.html 3 @@ -2846,6 +2861,7 @@ Mining Dashboard + Bord Minerit src/app/components/master-page/master-page.component.html 35,37 @@ -2925,6 +2941,7 @@ Reward stats + Statistici Recompense src/app/components/mining-dashboard/mining-dashboard.component.html 10 @@ -2933,6 +2950,7 @@ (144 blocks) + (144 blocuri) src/app/components/mining-dashboard/mining-dashboard.component.html 11 @@ -2954,6 +2972,7 @@ Adjustments + Ajustări src/app/components/mining-dashboard/mining-dashboard.component.html 63 @@ -2962,6 +2981,7 @@ Pools Luck (1w) + Noroc Fonduri (săpt) src/app/components/pool-ranking/pool-ranking.component.html 8,12 @@ -2974,6 +2994,7 @@ Blocks (1w) + Blocuri (săpt) src/app/components/pool-ranking/pool-ranking.component.html 14,18 @@ -2986,6 +3007,7 @@ Pools Count (1w) + Număr Fonduri (săpt) src/app/components/pool-ranking/pool-ranking.component.html 20,24 @@ -2998,6 +3020,7 @@ Rank + Rang src/app/components/pool-ranking/pool-ranking.component.html 84,86 @@ -3006,6 +3029,7 @@ Empty blocks + Blocuri goale src/app/components/pool-ranking/pool-ranking.component.html 89,92 @@ -3014,6 +3038,7 @@ All miners + Toți minerii src/app/components/pool-ranking/pool-ranking.component.html 107,108 @@ -3022,6 +3047,7 @@ Mining Pools + Fondurile de minerit src/app/components/pool-ranking/pool-ranking.component.ts 55 @@ -3029,6 +3055,7 @@ blocks + blocuri src/app/components/pool-ranking/pool-ranking.component.ts 160,158 @@ -3040,6 +3067,7 @@ Tags + Etichete src/app/components/pool/pool.component.html 22,23 @@ -3060,6 +3088,7 @@ Show all + Arată tot src/app/components/pool/pool.component.html 53,55 @@ -3070,16 +3099,17 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all Hide + Ascunde src/app/components/pool/pool.component.html 55,58 @@ -3088,6 +3118,7 @@ Hashrate (24h) + Rată de hash (24h) src/app/components/pool/pool.component.html 91,93 @@ -3108,6 +3139,7 @@ Estimated + Estimat src/app/components/pool/pool.component.html 96,97 @@ -3128,6 +3160,7 @@ Reported + Raportat src/app/components/pool/pool.component.html 97,98 @@ -3148,6 +3181,7 @@ Luck + Noroc src/app/components/pool/pool.component.html 98,101 @@ -3168,6 +3202,7 @@ Mined blocks + Blocuri minerite src/app/components/pool/pool.component.html 141,143 @@ -3188,6 +3223,7 @@ 24h + 24h src/app/components/pool/pool.component.html 147 @@ -3200,6 +3236,7 @@ 1w + săpt src/app/components/pool/pool.component.html 148 @@ -3212,6 +3249,7 @@ Coinbase tag + Etichetă Coinbase src/app/components/pool/pool.component.html 215,217 @@ -3242,6 +3280,7 @@ Transaction hex + Codul hex al tranzacției src/app/components/push-transaction/push-transaction.component.html 6 @@ -3254,6 +3293,7 @@ Miners Reward + Recompense mineri src/app/components/reward-stats/reward-stats.component.html 4,6 @@ -3266,6 +3306,7 @@ Amount being paid to miners in the past 144 blocks + Valoarea plătită minerilor în ultimele 144 de blocuri src/app/components/reward-stats/reward-stats.component.html 6,8 @@ -3274,14 +3315,11 @@ Reward Per Tx + Recompensă Per Tx src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3294,6 +3332,7 @@ Average miners' reward per transaction in the past 144 blocks + Valorea medie a recompensei minerilor pentru ultimele 144 de blocuri src/app/components/reward-stats/reward-stats.component.html 18,20 @@ -3302,6 +3341,7 @@ sats/tx + sats/tx src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -3313,8 +3353,18 @@ sat/vB shared.sat-vbyte + + Average Fee + Comision Mediu + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks + Comisionul plătit în medie pentru fiecare tranzacție în ultimele 144 de blocuri src/app/components/reward-stats/reward-stats.component.html 31,32 @@ -3639,7 +3689,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3818,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3865,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3875,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3885,7 @@ Martor src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,15 +3894,16 @@ Script valorificare P2SH src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script P2TR tapscript + P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3912,7 @@ Script martor P2WSH src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3921,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3930,7 @@ Script de ieșire anterior src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3939,7 @@ Tip ieșire anterior src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3948,7 @@ Legat-spre src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3957,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3967,20 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + Arată toate intrările pentru a descoperi informațiile despre comision + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Această tranzacție a economisit % în comisioane folosind implicit SegWit-Bech32 diff --git a/frontend/src/locale/messages.ru.xlf b/frontend/src/locale/messages.ru.xlf index b255e50cb..c75256a40 100644 --- a/frontend/src/locale/messages.ru.xlf +++ b/frontend/src/locale/messages.ru.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ Обьединения Сообщества src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ Участники проекта src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ Участники проекта src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ Разработчики проекта src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ Неконфиденциально src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - из транзакций + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - из транзакций + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ Ошибка загрузки данных адреса src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ Конфиденциально src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - Ошибка при загрузке данных о блоке. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Блок : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ Транзакции src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3073,11 +3050,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3281,10 +3258,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3316,6 +3289,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3642,7 +3623,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3771,7 +3752,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3818,7 +3799,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3828,7 +3809,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3838,7 +3819,7 @@ Свидетель src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3847,7 +3828,7 @@ Скрипт оплаты P2SH src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3855,7 +3836,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3864,7 +3845,7 @@ Скрипт свидетеля P2WSH src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3873,7 +3854,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3882,7 +3863,7 @@ Скрипт предыдущего вывода src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3891,7 +3872,7 @@ Предыдущий тип выхода src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3900,7 +3881,7 @@ Peg-out в src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3909,7 +3890,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3919,11 +3900,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Эта транзакция сэкономила % комиссии за счет использования встроенного SegWit-Bech32. diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 1d368494e..245feb7b6 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ Zavezništva skupnosti src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ Sodelujoči src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ Člani projekta src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ Vzdrževalci src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ Javno src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - od transakcij + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - od transakcij + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ Napaka pri nalaganju podatkov naslova. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ Zaupno src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - Napaka pri nalaganju podatkov bloka. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Blok : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH redeem skripta src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH witness skripta src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ Skripta prejšnjega izhoda src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ Tip prejšnjega izhoda src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ Peg-out v src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Ta transakcija je prihranila % omrežnine z uporabo native SegWit-Bech32. diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index a6ef7875f..4aaf9b507 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -28,7 +28,7 @@ Next - Näst + Nästa node_modules/src/carousel/carousel.ts 195 @@ -283,7 +283,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -296,7 +296,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -313,7 +313,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -326,7 +326,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -439,11 +439,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -509,10 +505,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -552,8 +544,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -576,14 +568,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -775,7 +759,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1034,7 +1018,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1088,7 +1072,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1110,7 +1094,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1409,7 +1393,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. - Vår mempool- och blockchainutforskare för Bitcoincommunitit, med fokus på marknaden för transaktionsavgifter och multilager-ekosystemet, helt självhostad utan betrodde tredjeparttjänster. + Vår mempool- och blockchainutforskare för bitcoincommunitit, med fokus på marknaden för transaktionsavgifter och multilagerekosystemet, helt självhostad utan betrodda tredjeparttjänster. src/app/components/about/about.component.html 13,17 @@ -1478,7 +1462,7 @@ Communityallianser src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1487,7 +1471,7 @@ Projektöversättare src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1496,7 +1480,7 @@ Projektbidragare src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1505,7 +1489,7 @@ Projektmedlemmar src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1514,7 +1498,7 @@ Projektunderhållare src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1551,25 +1535,25 @@ Okonfidentiell src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - av transaktion + of transaction + av transaktioner src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - av transaktioner + of transactions + av transaktioner src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1578,16 +1562,16 @@ Kunde inte ladda addressdata. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: - Det är fler transaktioner på den här addressen än din backend kan hantera. Läs mer om att sätta upp en starkare backend. Överväg att visa den här addressen på den officiella Mempoolsajten istället: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + Det är fler transaktioner på denna adressen än din backend kan hantera. Kolla upp om att sätta upp en starkare backend. Överväg att visa den här addressen på den officiella Mempool-sajten istället: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1596,7 +1580,7 @@ Konfidentiell src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1612,7 +1596,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2078,7 +2062,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2123,11 +2107,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2274,7 +2254,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2432,21 +2412,25 @@ Transaction Details transaction.details - - Error loading block data. - Kunde inte ladda blockdata. + + Error loading data. + Fel vid laddning av data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Block : src/app/components/block/block.component.ts - 146 + 147 @@ -2473,10 +2457,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2496,7 +2476,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3119,11 +3099,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3340,10 +3320,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3377,6 +3353,15 @@ sat/vB shared.sat-vbyte + + Average Fee + Snittavgifter + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks Avgifter betalade i genomsnitt per transaktion senaste 144 block @@ -3704,7 +3689,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3833,7 +3818,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3880,7 +3865,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3890,7 +3875,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3900,7 +3885,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3909,7 +3894,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3918,7 +3903,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3927,7 +3912,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3936,7 +3921,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3945,7 +3930,7 @@ Föregående outputscript src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3954,7 +3939,7 @@ Föregående output-typ src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3963,7 +3948,7 @@ Peg-out till src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3972,7 +3957,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3982,11 +3967,20 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + Visa alla inputs för att avslöja avgiftdata + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Denna transaktion sparade % på avgifter genom att använda native SegWit-Bech32 diff --git a/frontend/src/locale/messages.th.xlf b/frontend/src/locale/messages.th.xlf index e522b499f..57bdb70c8 100644 --- a/frontend/src/locale/messages.th.xlf +++ b/frontend/src/locale/messages.th.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ พันธมิตรของเรา src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ ผู้พัฒนาโปรเจค src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ สมาชิกในโปรเจคนี้ src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ ผู้ดูแลโปรเจค src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ ไม่เป็นความลับ src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - จาก ธุรกรรม + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - ของ ธุรกรรม + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ เกิดข้อผิดพลาดในการโหลดข้อมูลแอดเดรส src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ เป็นความลับ src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - เกิดข้อผิดพลาดในการโหลดข้อมูลบล็อก + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : บล็อก : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ TXs src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ พยาน src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ สคริปต์ถอน P2SH src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ สคริปต์พยาน P2SH src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nลำดับ src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ สคริปต์เอาต์พุตก่อนหน้า src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ ประเภทของ output ก่อนหน้า src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ Peg-out ไปยัง src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 ธุรกรรมนี้ประหยัดค่าธรรมเนียม % โดยใช้ native SegWit-Bech32 diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index 87881c6a6..7fec961fc 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ İşbirlikçi kömüniteler src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ Proje Destekçileri src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ Proje Üyeleri src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ Projeyi ayakta tutanlar src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ Gizli Olmaya src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - İşlemin / 'si + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - İşlemlerin /'si + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ Adres datası yüklenirken hata oluştu. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ Gizli src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - Blok datası yüklenirken hata oldu. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Blok: / src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ İşlemler src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Tanık src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH alım scripti src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH tanık scripti src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ Önceki çıkış scripti src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ Önceki çıkış tipi src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ 'ye çıkar src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Bu işlem native SegWit-Bech32 kullanrak % tasarruf sağladı diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 9c972ab1f..973d40e30 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ Союзи спільноти src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ Учасники проекту src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ Члени проекту src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ Розробники проекту src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ Неконфіденційна src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - з транзакція + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - з транзакцій + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ Не вдалося завантажити дані про адресу. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ Конфіденційна src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - Не вдалося завантажити дані про блок. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Блок : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ Транзакцій src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ P2SH redeem скрипт src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ P2WSH witness скрипт src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ Скрипт попереднього виходу src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ Тип попереднього виходу src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ Розкріплення до src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Ця транзакція зекономила % на комісії використовуючи нативний SegWit-Bech32 diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 62b8ed0b9..d9b2a6565 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -279,7 +279,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -292,7 +292,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -309,7 +309,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -322,7 +322,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -435,11 +435,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -505,10 +501,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -548,8 +540,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -572,14 +564,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -770,7 +754,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1029,7 +1013,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1083,7 +1067,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1105,7 +1089,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1470,7 +1454,7 @@ Liên minh cộng đồng src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1478,7 +1462,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1487,7 +1471,7 @@ Người đóng góp dự án src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1496,7 +1480,7 @@ Thành viên Dự án src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1505,7 +1489,7 @@ Người bảo trì dự án src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1541,25 +1525,23 @@ Không bảo mật src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - trong giao dịch + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - trong tổng số giao dịch + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1568,15 +1550,15 @@ Lỗi khi tải dữ liệu địa chỉ. src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1585,7 +1567,7 @@ Bảo mật src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1601,7 +1583,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2059,7 +2041,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2103,11 +2085,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2254,7 +2232,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2412,21 +2390,24 @@ Transaction Details transaction.details - - Error loading block data. - Lỗi khi tải dữ liệu khối. + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : Khối : src/app/components/block/block.component.ts - 146 + 147 @@ -2452,10 +2433,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2475,7 +2452,7 @@ Các giao dịch src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3070,11 +3047,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3278,10 +3255,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3313,6 +3286,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3639,7 +3620,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3768,7 +3749,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3815,7 +3796,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3825,7 +3806,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3835,7 +3816,7 @@ Chứng kiến src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3844,7 +3825,7 @@ Mã thu hồi P2SH src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3852,7 +3833,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3861,7 +3842,7 @@ Mã chứng kiến P2WSH src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3870,7 +3851,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3879,7 +3860,7 @@ Mã đầu ra trước đó src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3888,7 +3869,7 @@ Loại đầu ra trước đó src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3897,7 +3878,7 @@ Peg-out tới src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3906,7 +3887,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3916,11 +3897,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 Giao dịch này đã tiết kiệm % phí bằng cách sử dụng SegWit-Bech32 bản địa diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index f54742ae0..931a47c34 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -283,7 +283,7 @@ src/app/components/address/address.component.html - 3,5 + 3 shared.address @@ -296,7 +296,7 @@ src/app/components/address/address.component.html - 31,32 + 31 address.total-received @@ -313,7 +313,7 @@ src/app/components/address/address.component.html - 35,36 + 35 address.total-sent @@ -326,7 +326,7 @@ src/app/components/address/address.component.html - 40,41 + 40 address.balance @@ -439,11 +439,7 @@ src/app/components/blocks-list/blocks-list.component.html - 13,15 - - - src/app/components/latest-blocks/latest-blocks.component.html - 10,12 + 13,14 src/app/components/pool/pool.component.html @@ -509,10 +505,6 @@ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html 5,7 - - src/app/components/latest-blocks/latest-blocks.component.html - 9,10 - src/app/components/pool/pool.component.html 212,214 @@ -552,8 +544,8 @@ 34,36 - src/app/components/latest-blocks/latest-blocks.component.html - 12,16 + src/app/components/blocks-list/blocks-list.component.html + 18,19 src/app/components/mempool-block/mempool-block.component.html @@ -576,14 +568,6 @@ src/app/components/blocks-list/blocks-list.component.html 4,9 - - src/app/components/latest-blocks/latest-blocks.component.html - 2,7 - - - src/app/components/latest-blocks/latest-blocks.component.ts - 39 - src/app/components/liquid-master-page/liquid-master-page.component.html 35,37 @@ -775,7 +759,7 @@ src/app/components/about/about.component.html - 357,361 + 361,365 src/app/dashboard/dashboard.component.html @@ -1034,7 +1018,7 @@ src/app/components/transactions-list/transactions-list.component.html - 239,241 + 249,251 @@ -1088,7 +1072,7 @@ src/app/components/transactions-list/transactions-list.component.html - 266,267 + 277,278 Transaction singular confirmation count shared.confirmation-count.singular @@ -1110,7 +1094,7 @@ src/app/components/transactions-list/transactions-list.component.html - 267,268 + 278,279 Transaction plural confirmation count shared.confirmation-count.plural @@ -1475,7 +1459,7 @@ 社区联盟 src/app/components/about/about.component.html - 257,259 + 261,263 about.alliances @@ -1483,7 +1467,7 @@ Project Translators src/app/components/about/about.component.html - 273,275 + 277,279 about.translators @@ -1492,7 +1476,7 @@ 项目贡献者 src/app/components/about/about.component.html - 287,289 + 291,293 about.contributors @@ -1501,7 +1485,7 @@ 项目成员 src/app/components/about/about.component.html - 299,301 + 303,305 about.project_members @@ -1510,7 +1494,7 @@ 项目维护者 src/app/components/about/about.component.html - 312,314 + 316,318 about.maintainers @@ -1546,25 +1530,23 @@ 不保密 src/app/components/address/address.component.html - 23,24 + 23 address.unconfidential - of transaction - 中的交易 + of transaction src/app/components/address/address.component.html - 60,61 + 60 X of X Address Transaction - of transactions - 中的交易 + of transactions src/app/components/address/address.component.html - 61,62 + 61 X of X Address Transactions (Plural) @@ -1573,15 +1555,15 @@ 在加载地址数据时出错 src/app/components/address/address.component.html - 132,134 + 130 address.error.loading-address-data - There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + There many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: src/app/components/address/address.component.html - 137,140 + 135,138 Electrum server limit exceeded error @@ -1590,7 +1572,7 @@ 机密 src/app/components/address/address.component.html - 156,158 + 154 src/app/components/amount/amount.component.html @@ -1606,7 +1588,7 @@ src/app/components/transactions-list/transactions-list.component.html - 274,276 + 285,287 src/app/dashboard/dashboard.component.html @@ -2065,7 +2047,7 @@ src/app/components/blocks-list/blocks-list.component.html - 15,17 + 15,16 src/app/components/pool/pool.component.html @@ -2109,11 +2091,7 @@ src/app/components/blocks-list/blocks-list.component.html - 18,20 - - - src/app/components/latest-blocks/latest-blocks.component.html - 13,16 + 19,21 src/app/components/mempool-block/mempool-block.component.html @@ -2260,7 +2238,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259 + 269 src/app/dashboard/dashboard.component.html @@ -2418,21 +2396,24 @@ Transaction Details transaction.details - - Error loading block data. - 在加载区块数据时出错 + + Error loading data. src/app/components/block/block.component.html - 278,288 + 203,205 - block.error.loading-block-data + + src/app/components/block/block.component.html + 285,290 + + error.general-loading-data Block : 区块 src/app/components/block/block.component.ts - 146 + 147 @@ -2458,10 +2439,6 @@ src/app/components/blocks-list/blocks-list.component.html 14,15 - - src/app/components/latest-blocks/latest-blocks.component.html - 11,12 - src/app/components/pool/pool.component.html 214,215 @@ -2481,7 +2458,7 @@ 交易 src/app/components/blocks-list/blocks-list.component.html - 18,19 + 18 src/app/components/pool/pool.component.html @@ -3080,11 +3057,11 @@ src/app/components/transactions-list/transactions-list.component.html - 141,144 + 148,151 src/app/components/transactions-list/transactions-list.component.html - 249,251 + 259,261 show-all @@ -3290,10 +3267,6 @@ src/app/components/reward-stats/reward-stats.component.html 16,18 - - src/app/components/reward-stats/reward-stats.component.html - 29,31 - src/app/components/reward-stats/reward-stats.component.html 53,56 @@ -3325,6 +3298,14 @@ sat/vB shared.sat-vbyte + + Average Fee + + src/app/components/reward-stats/reward-stats.component.html + 29,31 + + mining.average-fee + Fee paid on average for each transaction in the past 144 blocks @@ -3651,7 +3632,7 @@ src/app/components/transactions-list/transactions-list.component.html - 270,273 + 281,284 Transaction unconfirmed state transaction.unconfirmed @@ -3780,7 +3761,7 @@ src/app/components/transactions-list/transactions-list.component.html - 259,260 + 269,270 sat shared.sat @@ -3827,7 +3808,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 97,99 + 104,106 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -3837,7 +3818,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 101,104 + 108,111 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -3847,7 +3828,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 106,108 + 113,115 transactions-list.witness @@ -3856,7 +3837,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 110,111 + 117,118 transactions-list.p2sh-redeem-script @@ -3864,7 +3845,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 114,116 + 121,123 transactions-list.p2tr-tapscript @@ -3873,7 +3854,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 116,118 + 123,125 transactions-list.p2wsh-witness-script @@ -3882,7 +3863,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 121,123 + 128,130 transactions-list.nsequence @@ -3891,7 +3872,7 @@ 上一次输出脚本 src/app/components/transactions-list/transactions-list.component.html - 126,127 + 133,134 transactions-list.previous-output-script @@ -3900,7 +3881,7 @@ 之前输出类型 src/app/components/transactions-list/transactions-list.component.html - 130,131 + 137,138 transactions-list.previous-output-type @@ -3909,7 +3890,7 @@ 解锁至 src/app/components/transactions-list/transactions-list.component.html - 166,167 + 176,177 transactions-list.peg-out-to @@ -3918,7 +3899,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 227,229 + 237,239 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -3928,11 +3909,19 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 231,234 + 241,244 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex + + Show all inputs to reveal fee data + + src/app/components/transactions-list/transactions-list.component.html + 271,274 + + transactions-list.load-to-reveal-fee-info + This transaction saved % on fees by using native SegWit-Bech32 本交易通过使用原生SegWit-Bech32节省%