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