diff --git a/frontend/src/app/docs/code-template/code-template.component.ts b/frontend/src/app/docs/code-template/code-template.component.ts
index 69478f26c..1875e175a 100644
--- a/frontend/src/app/docs/code-template/code-template.component.ts
+++ b/frontend/src/app/docs/code-template/code-template.component.ts
@@ -12,6 +12,7 @@ export class CodeTemplateComponent implements OnInit {
@Input() hostname: string;
@Input() baseNetworkUrl: string;
@Input() method: 'GET' | 'POST' | 'websocket' = 'GET';
+ @Input() showCodeExample: any;
env: Env;
constructor(
From c2570c5dad20e75ba0794837acc3deb2bd0486ca Mon Sep 17 00:00:00 2001
From: Felipe Knorr Kuhn <100320+knorrium@users.noreply.github.com>
Date: Wed, 18 May 2022 22:01:28 -0700
Subject: [PATCH 06/25] Upgrade Cypress to v9.6.1
---
frontend/package-lock.json | 18 +++++++++---------
frontend/package.json | 2 +-
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/frontend/package-lock.json b/frontend/package-lock.json
index 87d57666c..6996073e5 100644
--- a/frontend/package-lock.json
+++ b/frontend/package-lock.json
@@ -70,7 +70,7 @@
},
"optionalDependencies": {
"@cypress/schematic": "^1.3.0",
- "cypress": "^9.5.2",
+ "cypress": "^9.6.1",
"cypress-fail-on-console-error": "^2.1.3",
"cypress-wait-until": "^1.7.1",
"mock-socket": "^9.0.3",
@@ -6996,9 +6996,9 @@
"devOptional": true
},
"node_modules/cypress": {
- "version": "9.5.2",
- "resolved": "https://registry.npmjs.org/cypress/-/cypress-9.5.2.tgz",
- "integrity": "sha512-gYiQYvJozMzDOriUV1rCt6CeRM/pRK4nhwGJj3nJQyX2BoUdTCVwp30xDMKc771HiNVhBtgj5o5/iBdVDVXQUg==",
+ "version": "9.6.1",
+ "resolved": "https://registry.npmjs.org/cypress/-/cypress-9.6.1.tgz",
+ "integrity": "sha512-ECzmV7pJSkk+NuAhEw6C3D+RIRATkSb2VAHXDY6qGZbca/F9mv5pPsj2LO6Ty6oIFVBTrwCyL9agl28MtJMe2g==",
"hasInstallScript": true,
"optional": true,
"dependencies": {
@@ -7034,7 +7034,7 @@
"listr2": "^3.8.3",
"lodash": "^4.17.21",
"log-symbols": "^4.0.0",
- "minimist": "^1.2.5",
+ "minimist": "^1.2.6",
"ospath": "^1.2.2",
"pretty-bytes": "^5.6.0",
"proxy-from-env": "1.0.0",
@@ -22641,9 +22641,9 @@
"devOptional": true
},
"cypress": {
- "version": "9.5.2",
- "resolved": "https://registry.npmjs.org/cypress/-/cypress-9.5.2.tgz",
- "integrity": "sha512-gYiQYvJozMzDOriUV1rCt6CeRM/pRK4nhwGJj3nJQyX2BoUdTCVwp30xDMKc771HiNVhBtgj5o5/iBdVDVXQUg==",
+ "version": "9.6.1",
+ "resolved": "https://registry.npmjs.org/cypress/-/cypress-9.6.1.tgz",
+ "integrity": "sha512-ECzmV7pJSkk+NuAhEw6C3D+RIRATkSb2VAHXDY6qGZbca/F9mv5pPsj2LO6Ty6oIFVBTrwCyL9agl28MtJMe2g==",
"optional": true,
"requires": {
"@cypress/request": "^2.88.10",
@@ -22678,7 +22678,7 @@
"listr2": "^3.8.3",
"lodash": "^4.17.21",
"log-symbols": "^4.0.0",
- "minimist": "^1.2.5",
+ "minimist": "^1.2.6",
"ospath": "^1.2.2",
"pretty-bytes": "^5.6.0",
"proxy-from-env": "1.0.0",
diff --git a/frontend/package.json b/frontend/package.json
index 9a6445b46..b4e2727f8 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -122,7 +122,7 @@
},
"optionalDependencies": {
"@cypress/schematic": "^1.3.0",
- "cypress": "^9.5.2",
+ "cypress": "^9.6.1",
"cypress-fail-on-console-error": "^2.1.3",
"cypress-wait-until": "^1.7.1",
"mock-socket": "^9.0.3",
From ae2bda29c2732b7b528e5d5f959e998a6b0c9e6d Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Thu, 19 May 2022 05:39:35 -0400
Subject: [PATCH 07/25] Add testnet and signet for mining api docs
---
.../src/app/docs/api-docs/api-docs-data.ts | 617 ++++++++++++++----
1 file changed, 483 insertions(+), 134 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 0aed5fc8d..3beca2b10 100644
--- a/frontend/src/app/docs/api-docs/api-docs-data.ts
+++ b/frontend/src/app/docs/api-docs/api-docs-data.ts
@@ -2852,9 +2852,9 @@ export const restApiDocsData = [
description: {
default: "Returns details on the past 15 blocks with fee and mining details in an
extras field. If
:startHeight is specified, the past 15 blocks before (and including)
:startHeight are returned."
},
- urlString: "/blocks[/:startHeight]",
+ urlString: "/blocks-extras[/:startHeight]",
showConditions: bitcoinNetworks,
- showJsExamples: showJsExamplesDefault,
+ showJsExamples: showJsExamplesDefaultFalse,
codeExample: {
default: {
codeTemplate: {
@@ -2969,12 +2969,22 @@ export const restApiDocsData = [
},
...
]`,
- codeSampleTestnet: emptyCodeSample,
- codeSampleSignet: emptyCodeSample,
- codeSampleLiquid: emptyCodeSample,
- codeSampleLiquidTestnet: emptyCodeSample,
- codeSampleBisq: emptyCodeSample,
- }
+ },
+ codeSampleTestnet: {
+ esModule: [],
+ commonJS: [],
+ curl: ['2226118'],
+ response: `[]`
+ },
+ codeSampleSignet: {
+ esModule: [],
+ commonJS: [],
+ curl: ['88832'],
+ response: `[]`
+ },
+ codeSampleLiquid: emptyCodeSample,
+ codeSampleLiquidTestnet: emptyCodeSample,
+ codeSampleBisq: emptyCodeSample,
}
}
},
@@ -2985,7 +2995,7 @@ export const restApiDocsData = [
title: "Mining",
showConditions: bitcoinNetworks
},
- {
+ {
type: "endpoint",
category: "mining",
httpRequestMethod: "GET",
@@ -2994,20 +3004,20 @@ export const restApiDocsData = [
description: {
default: "Returns a list of all known mining pools ordered by blocks found over the specified trailing
:timePeriod.
Leave :timePeriod unspecified to get all available data, or specify one of the following values: " + miningTimeIntervals + "."
},
- urlString: "/v1/mining/pools/[:timePeriod]",
+ urlString: "/v1/mining/pools[/:timePeriod]",
showConditions: bitcoinNetworks,
showJsExamples: showJsExamplesDefaultFalse,
codeExample: {
default: {
codeTemplate: {
- curl: `/api/v1/mining/pools/1w`,
+ curl: `/api/v1/mining/pools/%{1}`,
commonJS: ``,
esModule: ``
},
codeSampleMainnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1w`],
response: `{
"pools": [
{
@@ -3046,22 +3056,39 @@ export const restApiDocsData = [
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`3y`],
+ response: `{
+ "pools": [
+ {
+ "poolId": 112,
+ "name": "SBI Crypto",
+ "link": "https://sbicrypto.com",
+ "blockCount": 26243,
+ "rank": 2,
+ "emptyBlocks": 11272,
+ "slug": "sbicrypto"
+ },
+ {
+ "poolId": 8,
+ "name": "Huobi.pool",
+ "link": "https://www.hpt.com/",
+ "blockCount": 12134,
+ "rank": 3,
+ "emptyBlocks": 6096,
+ "slug": "huobipool"
+ },
+ ...
+ ],
+ "oldestIndexedBlockTimestamp": 1296688602,
+ "blockCount": 2226180,
+ "lastEstimatedHashrate": 602244182177430.8
+}`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`3y`],
+ response: `{}`
},
codeSampleLiquid: emptyCodeSample,
codeSampleLiquidTestnet: emptyCodeSample,
@@ -3076,7 +3103,7 @@ export const restApiDocsData = [
fragment: "get-mining-pool",
title: "GET Mining Pool",
description: {
- default: "
Returns details about the specified mining pool.
"
+ default: "
Returns details about the mining pool specified by :slug.
"
},
urlString: "/v1/mining/pool/:slug",
showConditions: bitcoinNetworks,
@@ -3084,14 +3111,14 @@ export const restApiDocsData = [
codeExample: {
default: {
codeTemplate: {
- curl: `/api/v1/mining/pool/slushpool`,
+ curl: `/api/v1/mining/pool/%{1}`,
commonJS: ``,
esModule: ``
},
codeSampleMainnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`slushpool`],
response: `{
"pool": {
"id": 43,
@@ -3123,22 +3150,38 @@ export const restApiDocsData = [
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`binancepool`],
+ response: `{
+ "pool": {
+ "id": 105,
+ "name": "Binance Pool",
+ "link": "https://pool.binance.com/",
+ "addresses": [],
+ "regexes": [
+ "/Binance/",
+ "binance"
+ ],
+ "slug": "binancepool"
+ },
+ "blockCount": {
+ "all": 2,
+ "24h": 1,
+ "1w": 1
+ },
+ "blockShare": {
+ "all": 8.984160924290476e-7,
+ "24h": 0.004524886877828055,
+ "1w": 0.0005089058524173028
+ },
+ "estimatedHashrate": 2617854550633.5283,
+ "reportedHashrate": null
+}`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`unknown`],
+ response: `{}`
},
codeSampleLiquid: emptyCodeSample,
codeSampleLiquidTestnet: emptyCodeSample,
@@ -3161,14 +3204,14 @@ export const restApiDocsData = [
codeExample: {
default: {
codeTemplate: {
- curl: `/api/v1/mining/hashrate/pools/1m`,
+ curl: `/api/v1/mining/hashrate/pools/%{1}`,
commonJS: ``,
esModule: ``
},
codeSampleMainnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1m`],
response: `[
{
"timestamp": 1650240000,
@@ -3218,20 +3261,32 @@ export const restApiDocsData = [
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1y`],
response: `[
{
-
+ "timestamp": 1621814400,
+ "avgHashrate": 395655036336662.7,
+ "share": 1,
+ "poolName": "Unknown"
+ },
+ {
+ "timestamp": 1621814400,
+ "avgHashrate": 0,
+ "share": 0,
+ "poolName": "Binance Pool"
}
]`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1w`],
response: `[
{
-
+ "timestamp": 1600041600,
+ "avgHashrate": 21621.70283633912,
+ "share": 1,
+ "poolName": "Unknown"
}
]`
},
@@ -3248,7 +3303,7 @@ export const restApiDocsData = [
fragment: "get-mining-pool-hashrate",
title: "GET Mining Pool Hashrate",
description: {
- default: "Returns all known hashrate data for the specified mining pool. Hashrate values are weekly averages."
+ default: "Returns all known hashrate data for the mining pool specified by
:slug. Hashrate values are weekly averages."
},
urlString: "/v1/mining/pool/:slug/hashrate",
showConditions: bitcoinNetworks,
@@ -3256,14 +3311,14 @@ export const restApiDocsData = [
codeExample: {
default: {
codeTemplate: {
- curl: `/api/v1/mining/pool/foundryusa/hashrate`,
+ curl: `/api/v1/mining/pool/%{1}/hashrate`,
commonJS: ``,
esModule: ``
},
codeSampleMainnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`foundryusa`],
response: `[
{
"timestamp": 1647216000,
@@ -3307,21 +3362,53 @@ export const restApiDocsData = [
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`kncminer`],
response: `[
{
-
- }
+ "timestamp": 1400457600,
+ "avgHashrate": 23504290056.20675,
+ "share": 0.21875,
+ "poolName": "KnCMiner"
+ },
+ {
+ "timestamp": 1401062400,
+ "avgHashrate": 22880315827.385838,
+ "share": 0.301661,
+ "poolName": "KnCMiner"
+ },
+ {
+ "timestamp": 1401667200,
+ "avgHashrate": 65314000516.18979,
+ "share": 0.774853,
+ "poolName": "KnCMiner"
+ },
+ ...
]`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`unknown`],
response: `[
{
-
- }
+ "timestamp": 1600041600,
+ "avgHashrate": 21621.70283633912,
+ "share": 1,
+ "poolName": "Unknown"
+ },
+ {
+ "timestamp": 1600646400,
+ "avgHashrate": 23490.65374463165,
+ "share": 1,
+ "poolName": "Unknown"
+ },
+ {
+ "timestamp": 1601251200,
+ "avgHashrate": 22660.62333333333,
+ "share": 1,
+ "poolName": "Unknown"
+ },
+ ...
]`
},
codeSampleLiquid: emptyCodeSample,
@@ -3337,7 +3424,7 @@ export const restApiDocsData = [
fragment: "get-mining-pool-blocks",
title: "GET Mining Pool Blocks",
description: {
- default: "Returns past 10 blocks mined by the specified mining pool before the specified
:blockHeight. If no
:blockHeight is specified, the mining pool's 10 most recent blocks are returned."
+ default: "Returns past 10 blocks mined by the specified mining pool (
:slug) before the specified
:blockHeight. If no
:blockHeight is specified, the mining pool's 10 most recent blocks are returned."
},
urlString: "/v1/mining/pool/:slug/blocks/[:blockHeight]",
showConditions: bitcoinNetworks,
@@ -3345,14 +3432,14 @@ export const restApiDocsData = [
codeExample: {
default: {
codeTemplate: {
- curl: `/api/v1/mining/pool/luxor/blocks/730000`,
+ curl: `/api/v1/mining/pool/%{1}/blocks/%{2}`,
commonJS: ``,
esModule: ``
},
codeSampleMainnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`luxor`,`730000`],
response: `[
{
"id": "0000000000000000000572c6eb693c51b728593139079c613c8ea0bc6384e362",
@@ -3429,21 +3516,109 @@ export const restApiDocsData = [
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`bitcoincom`,`2226000`],
response: `[
{
-
- }
+ "id": "00000000000000ed428cdb70dfdeb0f3927912131cb96e7b1fe274b1bb1181b2",
+ "timestamp": 1582018014,
+ "height": 1666150,
+ "version": 541065216,
+ "bits": 436312585,
+ "nonce": 21973352,
+ "difficulty": 10474471.99230249,
+ "merkle_root": "541456efe41e5730a563475e0c5e2007ee660f1d86d9778bfc164d73c59fd605",
+ "tx_count": 382,
+ "size": 126201,
+ "weight": 331851,
+ "previousblockhash": "00000000005a0843cc88b09cf6def15e4dc8fe38ab5cf3ad890f34a2df497004",
+ "extras": {
+ "coinbaseRaw": "03666c19706f6f6c2e626974636f696e2e636f6d010000022583010000000000",
+ "medianFee": 1,
+ "reward": 39726335,
+ "totalFees": 663835,
+ "pool": {
+ "id": 12
+ }
+ }
+ },
+ {
+ "id": "00000000000000af90f51e48cb29fdecc62e9961c5e27aca1a4ae8213aae1954",
+ "timestamp": 1579793108,
+ "height": 1663620,
+ "version": 541065216,
+ "bits": 436295134,
+ "nonce": 1762790676,
+ "difficulty": 12563071.03178775,
+ "merkle_root": "02d02afea666f08bab5851de541d0570c71a6cd8be358c28952c52d57b7afad4",
+ "tx_count": 24,
+ "size": 9562,
+ "weight": 23848,
+ "previousblockhash": "000000000000013bbdbc0fef53a5b4b2af02880a6f56f7945de071b71d51123a",
+ "extras": {
+ "coinbaseRaw": "03846219706f6f6c2e626974636f696e2e636f6d01000065f224020000000000",
+ "medianFee": 1,
+ "reward": 39547121,
+ "totalFees": 484621,
+ "pool": {
+ "id": 12
+ }
+ }
+ },
+ ...
]`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`unknown`,`45000`],
response: `[
{
-
- }
+ "id": "00000002440c34e403b2b4e10f390ab105c825dd6285cd6f4050db23cf7e3e46",
+ "timestamp": 1625317548,
+ "height": 44999,
+ "version": 536870912,
+ "bits": 503405326,
+ "nonce": 14354169,
+ "difficulty": 0.002881346304279315,
+ "merkle_root": "3324dc134dec1b57cfea574ce2db6e40e51469417b6381a1389e7969386ab42e",
+ "tx_count": 14,
+ "size": 2971,
+ "weight": 8149,
+ "previousblockhash": "000000d7998f5cf0fb144a400566221574f5f35ebd5d7d9fa803460b6942e237",
+ "extras": {
+ "coinbaseRaw": "03c7af00",
+ "medianFee": 1,
+ "reward": 5000002252,
+ "totalFees": 2252,
+ "pool": {
+ "id": 137
+ }
+ }
+ },
+ {
+ "id": "000000d7998f5cf0fb144a400566221574f5f35ebd5d7d9fa803460b6942e237",
+ "timestamp": 1625317223,
+ "height": 44998,
+ "version": 536870912,
+ "bits": 503405326,
+ "nonce": 4729165,
+ "difficulty": 0.002881346304279315,
+ "merkle_root": "55869f5a52d7709fb2c6df91d64841f4551d659948b7537b6cd8f19c68d27115",
+ "tx_count": 32,
+ "size": 6967,
+ "weight": 18247,
+ "previousblockhash": "000000d6de5b925642a7afed41994947db8612955fbdfd9d1b48f99fc0187385",
+ "extras": {
+ "coinbaseRaw": "03c6af00",
+ "medianFee": 1,
+ "reward": 5000005528,
+ "totalFees": 5528,
+ "pool": {
+ "id": 137
+ }
+ }
+ },
+ ...
]`
},
codeSampleLiquid: emptyCodeSample,
@@ -3504,22 +3679,67 @@ export const restApiDocsData = [
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`3d`],
+ response: `{
+ "hashrates": [
+ {
+ "timestamp": 1652745600,
+ "avgHashrate": 385829751259101.6
+ },
+ {
+ "timestamp": 1652832000,
+ "avgHashrate": 657984995406460.8
+ },
+ {
+ "timestamp": 1652918400,
+ "avgHashrate": 510731129917436.6
+ }
+ ],
+ "difficulty": [
+ {
+ "timestamp": 1652691434,
+ "difficulty": 26119369.29706616,
+ "height": 2225402
+ }
+ ],
+ "currentHashrate": 781149965464814.4,
+ "currentDifficulty": 55580658.55098472
+}`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`3d`],
+ response: `{
+ "hashrates": [
+ {
+ "timestamp": 1652745600,
+ "avgHashrate": 21304.18163251096
+ },
+ {
+ "timestamp": 1652832000,
+ "avgHashrate": 22034.51091213679
+ },
+ {
+ "timestamp": 1652918400,
+ "avgHashrate": 20312.75493978447
+ }
+ ],
+ "difficulty": [
+ {
+ "timestamp": 1652692199,
+ "difficulty": 0.002868721424409158,
+ "height": 90533
+ },
+ {
+ "timestamp": 1652796655,
+ "difficulty": 0.00286032350920122,
+ "height": 90720
+ }
+ ],
+ "currentHashrate": 23490.95654668005,
+ "currentDifficulty": 0.00286032350920122
+}`
},
codeSampleLiquid: emptyCodeSample,
codeSampleLiquidTestnet: emptyCodeSample,
@@ -3534,7 +3754,7 @@ export const restApiDocsData = [
fragment: "get-reward-stats",
title: "GET Reward Stats",
description: {
- default: "Returns block reward and total transactions confirmed for each of the past
blockCount blocks."
+ default: "Returns block reward and total transactions confirmed for each of the past
:blockCount blocks."
},
urlString: "/v1/mining/reward-stats/:blockCount",
showConditions: bitcoinNetworks,
@@ -3542,14 +3762,14 @@ export const restApiDocsData = [
codeExample: {
default: {
codeTemplate: {
- curl: `/api/v1/mining/reward-stats/100`,
+ curl: `/api/v1/mining/reward-stats/%{1}`,
commonJS: ``,
esModule: ``
},
codeSampleMainnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`100`],
response: `{
"startBlock": 736556,
"endBlock": 736655,
@@ -3561,22 +3781,26 @@ export const restApiDocsData = [
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`100`],
+ response: `{
+ "startBlock": 2226086,
+ "endBlock": 2226185,
+ "totalReward": "513462793",
+ "totalFee": "25181593",
+ "totalTx": "2366"
+}`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`100`],
+ response: `{
+ "startBlock": 90899,
+ "endBlock": 90998,
+ "totalReward": "500001245259",
+ "totalFee": "1245259",
+ "totalTx": "1112"
+}`
},
codeSampleLiquid: emptyCodeSample,
codeSampleLiquidTestnet: emptyCodeSample,
@@ -3599,14 +3823,14 @@ export const restApiDocsData = [
codeExample: {
default: {
codeTemplate: {
- curl: `/api/v1/mining/blocks/fees/1w`,
+ curl: `/api/v1/mining/blocks/fees/%{1}`,
commonJS: ``,
esModule: ``
},
codeSampleMainnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1w`],
response: `[
{
"avg_height": 735644,
@@ -3644,21 +3868,37 @@ export const restApiDocsData = [
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1w`],
response: `[
{
-
- }
+ "avg_height": 2224253,
+ "timestamp": 1652346420,
+ "avg_fees": 211686
+ },
+ {
+ "avg_height": 2224254,
+ "timestamp": 1652346850,
+ "avg_fees": 2565952
+ },
+ ...
]`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1w`],
response: `[
{
-
- }
+ "avg_height": 89978,
+ "timestamp": 1652346573,
+ "avg_fees": 1071
+ },
+ {
+ "avg_height": 89979,
+ "timestamp": 1652346970,
+ "avg_fees": 1224
+ },
+ ...
]`
},
codeSampleLiquid: emptyCodeSample,
@@ -3682,14 +3922,14 @@ export const restApiDocsData = [
codeExample: {
default: {
codeTemplate: {
- curl: `/api/v1/mining/blocks/rewards/1d`,
+ curl: `/api/v1/mining/blocks/rewards/%{1}`,
commonJS: ``,
esModule: ``
},
codeSampleMainnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1d`],
response: `[
{
"avg_height": 599992,
@@ -3722,21 +3962,37 @@ export const restApiDocsData = [
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1d`],
response: `[
{
-
- }
+ "avg_height": 12,
+ "timestamp": 1296689648,
+ "avg_rewards": 5000000000
+ },
+ {
+ "avg_height": 269,
+ "timestamp": 1296717674,
+ "avg_rewards": 5000091820
+ },
+ ...
]`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1d`],
response: `[
{
-
- }
+ "avg_height": 183,
+ "timestamp": 1598962247,
+ "avg_rewards": 5000000000
+ },
+ {
+ "avg_height": 576,
+ "timestamp": 1599047892,
+ "avg_rewards": 5000000000
+ },
+ ...
]`
},
codeSampleLiquid: emptyCodeSample,
@@ -3760,14 +4016,14 @@ export const restApiDocsData = [
codeExample: {
default: {
codeTemplate: {
- curl: `/api/v1/mining/blocks/fee-rates/1m`,
+ curl: `/api/v1/mining/blocks/fee-rates/%{1}`,
commonJS: ``,
esModule: ``
},
codeSampleMainnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`1m`],
response: `{
"oldestIndexedBlockTimestamp": 1571434851,
"blockFeeRates": [
@@ -3805,27 +4061,74 @@ export const restApiDocsData = [
"avg_fee_100": 251
},
...
+ ]
}`
},
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`1m`],
+ response: `{
+ "oldestIndexedBlockTimestamp": 1296688602,
+ "blockFeeRates": [
+ {
+ "avg_height": 2196306,
+ "timestamp": 1650360168,
+ "avg_fee_0": 1,
+ "avg_fee_10": 1,
+ "avg_fee_25": 1,
+ "avg_fee_50": 1,
+ "avg_fee_75": 2,
+ "avg_fee_90": 28,
+ "avg_fee_100": 2644
+ },
+ {
+ "avg_height": 2196308,
+ "timestamp": 1650361209,
+ "avg_fee_0": 1,
+ "avg_fee_10": 1,
+ "avg_fee_25": 1,
+ "avg_fee_50": 4,
+ "avg_fee_75": 12,
+ "avg_fee_90": 65,
+ "avg_fee_100": 102
+ },
+ ...
+ ]
+}`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`1m`],
+ response: `{
+ "oldestIndexedBlockTimestamp": 1598918400,
+ "blockFeeRates": [
+ {
+ "avg_height": 86620,
+ "timestamp": 1650360010,
+ "avg_fee_0": 1,
+ "avg_fee_10": 1,
+ "avg_fee_25": 1,
+ "avg_fee_50": 1,
+ "avg_fee_75": 1,
+ "avg_fee_90": 1,
+ "avg_fee_100": 1
+ },
+ {
+ "avg_height": 86623,
+ "timestamp": 1650361330,
+ "avg_fee_0": 1,
+ "avg_fee_10": 1,
+ "avg_fee_25": 1,
+ "avg_fee_50": 1,
+ "avg_fee_75": 1,
+ "avg_fee_90": 1,
+ "avg_fee_100": 1
+ },
+ ...
+ ]
+}`
},
codeSampleLiquid: emptyCodeSample,
codeSampleLiquidTestnet: emptyCodeSample,
@@ -3848,14 +4151,14 @@ export const restApiDocsData = [
codeExample: {
default: {
codeTemplate: {
- curl: `/api/v1/mining/blocks/sizes-weights/3y`,
+ curl: `/api/v1/mining/blocks/sizes-weights/%{1}`,
commonJS: ``,
esModule: ``
},
codeSampleMainnet: {
esModule: [],
commonJS: [],
- curl: [],
+ curl: [`3y`],
response: `{
"sizes": [
{
@@ -3908,22 +4211,68 @@ export const restApiDocsData = [
codeSampleTestnet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`3y`],
+ response: `{
+ "sizes": [
+ {
+ "avg_height": 1517188,
+ "timestamp": 1558262730,
+ "avg_size": 25089
+ },
+ {
+ "avg_height": 1517275,
+ "timestamp": 1558290933,
+ "avg_size": 21679
+ },
+ ...
+ ],
+ "weights": [
+ {
+ "avg_height": 1517188,
+ "timestamp": 1558262730,
+ "avg_weight": 74921
+ },
+ {
+ "avg_height": 1517275,
+ "timestamp": 1558290933,
+ "avg_weight": 65164
+ },
+ ...
+ ]
+}`
},
codeSampleSignet: {
esModule: [],
commonJS: [],
- curl: [],
- response: `[
- {
-
- }
-]`
+ curl: [`3y`],
+ response: `{
+ "sizes": [
+ {
+ "avg_height": 83,
+ "timestamp": 1598937527,
+ "avg_size": 329
+ },
+ {
+ "avg_height": 266,
+ "timestamp": 1598982991,
+ "avg_size": 330
+ },
+ ...
+ ],
+ "weights": [
+ {
+ "avg_height": 83,
+ "timestamp": 1598937527,
+ "avg_weight": 1209
+ },
+ {
+ "avg_height": 266,
+ "timestamp": 1598982991,
+ "avg_weight": 1212
+ },
+ ...
+ ]
+}`
},
codeSampleLiquid: emptyCodeSample,
codeSampleLiquidTestnet: emptyCodeSample,
From 68bc7de1315488772844785d600c876d06c8a12c Mon Sep 17 00:00:00 2001
From: nymkappa
Date: Thu, 19 May 2022 12:13:43 +0200
Subject: [PATCH 08/25] Index blocks.hash
---
backend/src/api/database-migration.ts | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/backend/src/api/database-migration.ts b/backend/src/api/database-migration.ts
index 80c338a20..8fb534dc5 100644
--- a/backend/src/api/database-migration.ts
+++ b/backend/src/api/database-migration.ts
@@ -4,7 +4,7 @@ import logger from '../logger';
import { Common } from './common';
class DatabaseMigration {
- private static currentVersion = 17;
+ private static currentVersion = 18;
private queryTimeout = 120000;
private statisticsAddedIndexed = false;
@@ -180,6 +180,10 @@ class DatabaseMigration {
if (databaseSchemaVersion < 17 && isBitcoin === true) {
await this.$executeQuery('ALTER TABLE `pools` ADD `slug` CHAR(50) NULL');
}
+
+ if (databaseSchemaVersion < 18 && isBitcoin === true) {
+ await this.$executeQuery('ALTER TABLE `blocks` ADD INDEX `hash` (`hash`);');
+ }
} catch (e) {
throw e;
}
From e58d3e150cfcc7b1b85badc788a1972430c52ab9 Mon Sep 17 00:00:00 2001
From: nymkappa
Date: Thu, 19 May 2022 12:17:26 +0200
Subject: [PATCH 09/25] Cache /block API response for 10 min on user side
---
backend/src/routes.ts | 1 +
1 file changed, 1 insertion(+)
diff --git a/backend/src/routes.ts b/backend/src/routes.ts
index d7fe35b08..6c8c0176d 100644
--- a/backend/src/routes.ts
+++ b/backend/src/routes.ts
@@ -703,6 +703,7 @@ class Routes {
public async getBlock(req: Request, res: Response) {
try {
const block = await blocks.$getBlock(req.params.hash);
+ res.setHeader('Expires', new Date(Date.now() + 1000 * 600).toUTCString());
res.json(block);
} catch (e) {
res.status(500).send(e instanceof Error ? e.message : e);
From 8ff33bbb90570f332dcd3e61c88aac0b97b4ab7c Mon Sep 17 00:00:00 2001
From: nymkappa
Date: Thu, 19 May 2022 17:20:42 +0200
Subject: [PATCH 10/25] Set expiration to 1 min for
/mining/reward-stats/:blockCount and /blocks-extras/:height
---
backend/src/routes.ts | 2 ++
1 file changed, 2 insertions(+)
diff --git a/backend/src/routes.ts b/backend/src/routes.ts
index 6c8c0176d..c39d3ec56 100644
--- a/backend/src/routes.ts
+++ b/backend/src/routes.ts
@@ -723,6 +723,7 @@ class Routes {
public async getBlocksExtras(req: Request, res: Response) {
try {
const height = req.params.height === undefined ? undefined : parseInt(req.params.height, 10);
+ res.setHeader('Expires', new Date(Date.now() + 1000 * 60).toUTCString());
res.json(await blocks.$getBlocksExtras(height, 15));
} catch (e) {
res.status(500).send(e instanceof Error ? e.message : e);
@@ -1002,6 +1003,7 @@ class Routes {
public async $getRewardStats(req: Request, res: Response) {
try {
const response = await mining.$getRewardStats(parseInt(req.params.blockCount, 10));
+ res.setHeader('Expires', new Date(Date.now() + 1000 * 60).toUTCString());
res.json(response);
} catch (e) {
res.status(500).end();
From 7600c526cf06ed37b842572434a84449936a3420 Mon Sep 17 00:00:00 2001
From: softsimon
Date: Thu, 19 May 2022 20:12:21 +0400
Subject: [PATCH 11/25] Pull from transifex
---
frontend/src/locale/messages.ar.xlf | 2890 ++++++++++++-----------
frontend/src/locale/messages.ca.xlf | 2763 +++++++++++-----------
frontend/src/locale/messages.cs.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.de.xlf | 2956 ++++++++++++------------
frontend/src/locale/messages.en_US.xlf | 2708 +++++++++++-----------
frontend/src/locale/messages.es.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.fa.xlf | 2890 ++++++++++++-----------
frontend/src/locale/messages.fi.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.fr.xlf | 2913 ++++++++++++-----------
frontend/src/locale/messages.he.xlf | 2870 ++++++++++++-----------
frontend/src/locale/messages.hi.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.hr.xlf | 2714 +++++++++++-----------
frontend/src/locale/messages.hu.xlf | 2885 ++++++++++++-----------
frontend/src/locale/messages.it.xlf | 2887 ++++++++++++-----------
frontend/src/locale/messages.ja.xlf | 2888 ++++++++++++-----------
frontend/src/locale/messages.ka.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.ko.xlf | 2877 ++++++++++++-----------
frontend/src/locale/messages.mk.xlf | 2887 ++++++++++++-----------
frontend/src/locale/messages.nb.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.nl.xlf | 2950 +++++++++++------------
frontend/src/locale/messages.pl.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.pt.xlf | 2952 +++++++++++------------
frontend/src/locale/messages.ro.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.ru.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.sl.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.sv.xlf | 2954 +++++++++++------------
frontend/src/locale/messages.th.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.tr.xlf | 2889 ++++++++++++-----------
frontend/src/locale/messages.uk.xlf | 2886 ++++++++++++-----------
frontend/src/locale/messages.vi.xlf | 2869 ++++++++++++-----------
frontend/src/locale/messages.zh.xlf | 2898 ++++++++++++-----------
31 files changed, 44376 insertions(+), 44896 deletions(-)
diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf
index 930d24c1c..a0c3f6b01 100644
--- a/frontend/src/locale/messages.ar.xlf
+++ b/frontend/src/locale/messages.ar.xlf
@@ -5,16 +5,15 @@
Close
مغلق
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- الشريحة من
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
السابق
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
التالي
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
اختر الشهر
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
اختر السنة
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
الشهر السابق
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
الشهر التالي
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
ساعة
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
ساعات
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
دقيقة
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
دقائق
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
ساعات إضافية
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
انتقاص الساعات
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
دقائق إضافية
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
انتقاص الدقائق
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
ثانية
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
ثوان
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
ثواني اضافيه
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
انتقاص الثوان
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
مغلق
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- الأصول المسجلة
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- البحث عن الأصول
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- مسح
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- الأسم
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- المؤشر
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- نطاق المصدر
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- معرف الأصول
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- خطأ في تحميل بيانات الأصول.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- الأصول
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,9 +414,9 @@
block.hash
-
+
Timestamp
- الوقت والتاريخ
+ الوقت و التاريخ
src/app/bisq/bisq-block/bisq-block.component.html
23
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- عرض الكل »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
شروط الخدمة
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ سياسة الخصوصية
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
طلبات الشراء
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ تم تأكيد
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
رسوم الإدراج
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- نسعى لبناء مستكشف كتل وmempool لمجتمع البتكوين، بتركيز على إيضاح رسوم المعاملات والطبقات المتعددة للنظام، من دون أي إعلانات، أو عملات رقمية بديلة، أو متتبعات تابعة لجهات خارجية.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- رعاة المشروع 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- رعاة من المجتمع ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
كن راعياً ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
انتقل الى https://mempool.space/sponsor للرعاية
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- التكامل المجتمعي
+
+ Enterprise Sponsors 🚀
+ رعاة المشروع 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ رعاة من المجتمع ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
التحالفات المجتمعية
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
المساهمون في المشروع
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
أعضاء المشروع
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
فريق صيانة المشروع
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
حول
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- متعدد التواقيع من
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- البرق
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- ليكويد
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- يتجاوز عدد المعاملات على هذا العنوان حد خادم Electrum ، ففكر في عرض هذا العنوان على موقع 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
الأسم
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
مربوط
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
غير مربوط
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
الكمية المحروقه
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
كمية التداول
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
خطأ في تحميل اصل البيانات.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
الأصل:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ الأصول
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ البحث عن الأصول
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ مسح
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ المؤشر
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ نطاق المصدر
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ معرف الأصول
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ خطأ في تحميل بيانات الأصول.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
غير متصل
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
لوحة التحكم
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
احصائيات
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
المستندات
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ الحجم
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ الوزن
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
الكتلة القادمة
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- الوقت و التاريخ
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- الحجم
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- الوزن
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
متوسط الرسوم
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
الرسوم الكلية
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
مكافأة الكتلة + الرسوم:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
المعدن
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
وحدات صغيرة.
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
جذع ميركيل
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
الصعوبه
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
رمز أحادي فردي الإستخدام.
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
عنوان الكتلة HEX
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
التفاصيل
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
خطأ في تحميل بيانات الكتلة.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
الكتلة :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ تم تعدينه
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ التحويلات
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
تم النسخ!
@@ -2164,850 +2503,126 @@
15
-
- API service
- خدمة API
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- نقطة النهاية
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- وصف
+
+ Difficulty Adjustment
+ تعديل الصعوبة
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ متبقي
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- تفاصيل عوائد صعوبة التعديل.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- يوفر قائمة بالعملات المتاحة لعملة أساسية معينة.
+
+ Estimate
+ متوقعة
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- يوفر قائمة أسعار العروض المفتوحة لسوق واحد.
+
+ Previous
+ السابق
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- يوفر بيانات عالية / منخفضة / مفتوحة / قريبة لسوق معين. يمكن استخدام هذا لإنشاء مخطط شارت.
+
+ Current Period
+ الفترة الحالية
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- يقدم قائمة بالأسواق المتاحة.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- يوفر قائمة بتفاصيل العروض المفتوحة لسوق واحد
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- يوفر مؤشر سعر على مدار 24 ساعة لسوق واحد أو لجميع الأسواق
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- يوفر قائمة بالصفقات المنجزة لسوق واحد
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- يوفر بيانات حجم التداول من حيث العملة الأساسية لواحد أو جميع الأسواق.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- إحصاءات عوائد جميع معاملات التداول الندية .
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- تفاصيل عوائد المعاملات. الحقول المتوقرة: المعاملات الكاملة في عقود العملات الرقمية لتخزين المعلومات عن العمليات غير المعلنة , الإصدار , وقت الاغلاق , الحجم , قياس حجم الكتلة , الرسم , الأرباح الشاملة , ناتج جميع المعاملات ,و الحالة .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- احصل على سجل المعاملات للعنوان المحدد / scripthash ، مرتبة بالأحدث أولاً. إرجاع ما يصل إلى 50 معاملة من معاملات mempool بالإضافة إلى أول 25 معاملة مؤكدة. يمكنك طلب المزيد من المعاملات المؤكدة باستخدام اخر ظهور للحواله عن طريق عنوان الحواله ( شاهد بالاسفل )
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- احصل على محفوظات المعاملات المؤكدة للعنوان المحدد / scripthash ، مرتبة بالأحدث أولاً. إرجاع 25 معاملة لكل صفحة. يمكن طلب المزيد من خلال تحديد ملف رقم هوية التحويله الأخير الذي تمت رؤيته بواسطة الاستعلام السابق.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- احصل على محفوظات التحويله غير المؤكدة للعنوان المحدد / تجزئة البرنامج النصي. أسترجاع ما يصل إلى 50 معاملة (بدون ترحيل).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- الحصول على قائمة الحوالات غير المدفوعة مرفقة بالعنوان/ تجزئة البرنامج النصي. الحقول المتوفرة: رقم تعريف المعاملة , رقم انتاجية المعاملات , القيمة ,و الحالة (مع حالة تمويل الحوالة). يوجد ايضاً القيمة الالزامية حقل يمكن ان يظهر مكان : القيمة ,الإضافة الى الحقول التالية: الأصول / الأصول الملزمة , رمز الإستخدام لمرة واحدة / رمز الزامي للإستخدام مرة واحدة , دليل شامل ,و نطاق الإثبات .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- إرجاع معلومات حول الأصول المسيله.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- ترجع المعاملات مرفقة بسيولة الأصول المالية المحددة .تعاد لائحة ربط المعاملات و إخراجها و المعاملات الملغية لشبكة الأصول الحقيقية. ترجع لائحة الإصدار و إعادة الاصدار و المعاملات الملغية لأصول المستخدم المعلنة. الحوالات العادية الصادرة لا تتضمن تحويل هذه الاصول .
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- إحصل على الإمدادات الكاملة الحالية لأصول محددة. يتم إحتساب الأصول الأصلية (L-BTC) على الشكل التالي [سلسلة عقود العملات الرقمية لتخزين المعلومات عن العمليات غير المعلنة]_إحصاءات.الكميات_ المربوطة-[سلسلة عقود العملات الرقمية لتخزين المعلومات عن العمليات غير المعلنة]_إحصاءات الكميات_غير_المربوطة-[سلسلة عقود العملات الرقمية لتخزين المعلومات عن العمليات غير المعلنة]_إحصاءات_ الكميات_ الملغاة. يتم إحتساب الأصول المعلنة على الشكل التالي[سلسلة عقود العملات الرقمية لتخزين المعلومات عن العمليات غير المعلنة]_احصاءات الكميات_المعلنة-[سلسلة عقود العملات الرقمية لتخزين المعلومات عن العمليات الغير المعلنة]_إحصاءات الكميات_الملغاة. ليست متوفرة لإصدار الأصول المخفية. اذا كانت الكسور العشرية مُعرفة تُرجع الإمدادات على شكل كسور عشرية بالنسبة لقابلية تجزئة الأصول وإلا تُرجع الى الوحدة الأساسية.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- الحصول على قائمة الحوالات غير المدفوعة مرفقة بالعنوان/ تجزئة البرنامج النصي. الحقول المتوفرة: رقم تعريف المعاملة , رقم انتاجية المعاملات , القيمة ,و الحالة (مع حالة تمويل الحوالة). يوجد ايضاً القيمة الالزامية حقل يمكن ان يظهر مكان : القيمة ,الإضافة الى الحقول التالية: الأصول / الأصول الملزمة , رمز الإستخدام لمرة واحدة / رمز الزامي للإستخدام مرة واحدة , دليل شامل , و نطاق الإثبات .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- عوائد سلسلة أرقام سداسية عشرية مشفرة كعنوان كتله.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- عوائد تجزئة الكتلة الحالية : الإرتفاع .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- عوائد تقرير الكتلة الأولية في الثنائية.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- عوائد الحالة المؤكدة في الكتلة. الحقول المتوفرة: في السلسلة الأفضل (الجبر المنطقيboolean, خطأ اذا كانت الكتل المهملة), الخيار الأفضل التالي (التجزئة النصية للكتلة التالية ,متوفرة فقط للكتل في السلسة الأفضل).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- معرفة ارتفاع آخر كتلة
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- عوائد التجزئة في الكتلة الأخيرة.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- عوائد المعاملات عند المؤشر : المؤشر ضمن سلسلة محددة.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- إرجاع لائحة بكل أرقام المعاملات في الكتلة.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- عوائد لائحة المعاملات في الكتلة (ما يقارب 25 تبدأ عند مؤشر البداية ).المعاملات العائدة لا تملك ,حالة ,ميدان, بما ان تتشارك جميع المعاملات الكتلة و حالة التأكيد ذاتها.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- عوائد أجدد 10 كتل عند بداية القمة او عند :بداية حجم الكتلة و موقعها بالنسبة للكتل المؤكدة التي سبقتها اذا كانت معرفة.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- عوائد عقود العملات الرقمية الحالية لتخزين المعلومات عن العمليات غير المعلنة ككتل متوقعة.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- عوائد الرسوم المقترحة للمعاملات الجديدة.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- عوائد احصاءات التراكمية لعقود العملات الرقمية لتخزين المعلومات عن العمليات غير المعلنة.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- الحصول على لائحة المعاملات الكاملة في عقود العملات الرقمية لتخزين المعلومات عن العمليات غير المعلنة.كمصفوفة. ترتيب المعاملات عشوائي لا يتناسب مع بيتكوين.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- الحصول على لائحة المعاملات ال10 الأخيرة لتدخل عقود العملات الرقمية لتخزين معلومات العمليات غير المعلنة. كل قاعدة لعملية المعاملات تحتوي على بيانات شاملة وملخصة مع الخانات التالية: تجزئة بيانات المعاملات , الرسوم , وحدة قياس إفتراضية بديلة ,و القيمة .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- عوائد الرسوم السابقة و أفضل الرسوم اللاحقة للمعاملة.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- تفاصيل عوائد المعاملات. الحقول المتوقرة: المعاملات الكاملة في عقود العملات الرقمية لتخزين المعلومات عن العمليات غير المعلنة , الإصدار , وقت الاغلاق , الحجم , قياس حجم الكتلة , الرسم , الأرباح الشاملة , ناتج جميع المعاملات ,و الحالة .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- عوائد معاملة كسلسلة أرقام سداسية عشرية.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- عوائد دليل تضمين إستخدام المعاملة المحوسبة برنامج بتكوين الخفي الأساسي صيغة.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- عوائد دليل تضمين إستخدام المعاملة المحوسبة سلسلة كتل الكهرمان المعدني. المعاملة. احصل_صيغة الحوسبة.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- عوائد حالة الإنفاق لناتج المعاملة. الحقول المتوفرة: الإنفاق (الجبر المنطقي boolean ), أرقام المعاملات في الكتلة (إختياري),و الأرباح الشاملة (إختياري),و الحالة (إختياري, حالة إنفاق المعاملة).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- عوائد حالة التكاليف كل نتائج المعاملات.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- إرجاع معاملة كبيانات ثنائية.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- يُرجع حالة تأكيد المعاملة. الحقول المتوفرة: مؤكد (boolean)، حجم الكتلة (اختياري)، و هاش الكتلة (اختياري).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- عوائد: إمتداد البيانات الواقعية للمعاملات, عند نقطة المؤشر.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- بث معاملة أصلية الى الشبكة.المعاملة يجب أن تُقَدم كأرقام سداسية عشرية في نص الطلب.أرقام المعاملات في الكتلة معرف الحوالة يتم إسترجاعها عند نجاح العملية.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- الدفع الإعتيادي: إجراء:أريد, بيانات:[’الكتل’،...] لتحدديد ما تريد دفعه.متوفر: كتل ، ;كتل عقود للعمليات غير المعلنة ، جدول-2h-مباشر ،و إحصاءات . دفع المعاملات المرتبطة بالعنوان: ’إتبع-عنوان’: ’3PbJ...bF98’ للحصول على معاملة جديدة تحتوي ذلك العنوان كإدخال و إخراج. إرجاع مصفوف المعاملات. عنوان المعاملات لكتل العقود غير المعلنة الجديدة، و معاملات الكتللالمعاملات المؤكدة في الكتل الجديدة .
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- مثال على الرمز
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- تنزيل المجموعة
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- الاستجابة
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- توثيق
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- سياسة الخصوصية
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- معاملات وحدات العناوين الإفتراضية في الثانية:
+
+ Incoming transactions
+ الحوالات الواردة
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
يتم مزامنة الباك اند
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
بايتات افتراضية\الثانية
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
غير مؤكدة
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
حجم الميم بول
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- كتل
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- كتلة
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- تم تعدينه
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- كتل
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
الرسوم البيانية
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
وضع التلفزيون
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ توثيق
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
نطاق الرسوم
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- الرسوم الكلية
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- الكتلة التالية
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
كومة من كتل mempool
@@ -3236,7 +2912,7 @@
ُبعد
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
المجموع
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- غير معروف
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- تم تحديده من خلال عنوان الدفع: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- تم تحديده بواسطة علامة كوين بيس : ' '
+
+ Latest blocks
+ احدث الكتل
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- تحويلة سلسلة ارقام سداسية عشرية
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
البحث باستخدام معرّف الحوالة، العنوان، رقم الكتلة او الهاش
@@ -3326,7 +3344,7 @@
الرعاة
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
طلب الفاتوره
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
في إنتظار التحويلات
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
تم تأكيد التبرع!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
شكراً لك!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
المعاملات الغير مؤكدة بالبايتات الافتراضية (ساتوشي/بايت افتراضي)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
تنقيه
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
عكس
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
حجم التحويلات في الثانية (بايت افتراضي/ثانية)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- تم تأكيد
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
اول رؤية
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- حجم
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- وزن
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
وقت القفل
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
ساتوشي
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
كوين بيس
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(عملات تم إنشاؤها حديثًا)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
ربط
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
البرنامج النصي (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
البرنامج النصي. (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
شوهد
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
البرنامج النصي استرداد P2SH
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
نتائج التجزئة النصية العالقة 2 للشاهد النصي المنفصل.
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
ن التسلسل
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
نص النتائج السابقة.
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
نص النتائج السابقة.
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- تحميل الكل
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
إخراج المعاملات الى
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
النتيجة النصية لمعاملات بتكوين(عملية عكسية لإلغاء الرموز النصية)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
النتيجة النصيةلمعاملات بتكوين (سلسلة ارقام سداسية عشرية)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- البيانات
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- ساتوشي
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
هذه المعاملة وفرت % من الرسوم بسبب استخدام SegWit-Bech32
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- احدث الكتل
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- التحويلات
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
احدث التحويلات
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
دولار
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
الرسوم
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
توسيع
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
انهيار
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
الحد الادنى للعمولة
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
تطهير
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
استخدام الذاكرة
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
L-BTC المتداول
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- الحوالات الواردة
+
+ API service
+ خدمة API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- تعديل الصعوبة
+
+ Endpoint
+ نقطة النهاية
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- متبقي
+
+ Description
+ وصف
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- متوقعه
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ الدفع الإعتيادي: إجراء:أريد, بيانات:[’الكتل’،...] لتحدديد ما تريد دفعه.متوفر: كتل ، ;كتل عقود للعمليات غير المعلنة ، جدول-2h-مباشر ،و إحصاءات . دفع المعاملات المرتبطة بالعنوان: ’إتبع-عنوان’: ’3PbJ...bF98’ للحصول على معاملة جديدة تحتوي ذلك العنوان كإدخال و إخراج. إرجاع مصفوف المعاملات. عنوان المعاملات لكتل العقود غير المعلنة الجديدة، و معاملات الكتللالمعاملات المؤكدة في الكتل الجديدة .
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- السابق
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- الفترة الحالية
+
+ Code Example
+ مثال على الرمز
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ تنزيل المجموعة
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ الاستجابة
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
@@ -4336,7 +4302,7 @@
hour
- ساعه
+ ساعة
src/app/shared/i18n/dates.ts
11
diff --git a/frontend/src/locale/messages.ca.xlf b/frontend/src/locale/messages.ca.xlf
index 16e030048..8fc9b3137 100644
--- a/frontend/src/locale/messages.ca.xlf
+++ b/frontend/src/locale/messages.ca.xlf
@@ -5,15 +5,15 @@
Close
Tancar
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -21,39 +21,39 @@
Previous
Anterior
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Següent
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Seleccioneu el mes
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Seleccioneu l'any
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -61,317 +61,213 @@
Previous month
Mes anterior
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Següent mes
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Hores
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minuts
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Incrementar hores
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Reduir hores
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Incrementar minuts
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Reduir minuts
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Segons
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Incrementar segons
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Reduir segons
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Tancar
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Actius registrats
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Buscar actius
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Borrar
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Nom
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Símbol
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Domini emissor
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID del actiu
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Error al carregar les dades dels actius.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Actius
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -442,15 +338,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -466,15 +362,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -514,7 +410,7 @@
block.hash
-
+
Timestamp
Marca de temps
@@ -527,14 +423,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -577,13 +492,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -594,10 +525,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -613,16 +540,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -638,23 +561,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -793,9 +724,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Veure tot
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -805,33 +735,66 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Condicions del servei
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Ofertes de compra
@@ -933,6 +896,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -987,11 +966,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1021,7 +1000,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1043,7 +1022,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1055,7 +1034,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1096,7 +1075,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1117,7 +1096,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1215,7 +1194,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1239,9 +1218,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Confirmat
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Quota de llistat d'actiu
@@ -1397,20 +1390,40 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Construint un explorador de mempool i blockchain per a la comunitat Bitcoin, centrant-se en el mercat de quotes de transacció i l'ecosistema de múltiples capes, sense cap publicitat, altcoins o rastrejadors de tercers.
+
+ 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,16
+ 13,17
+
+ Become a sponsor ❤️
+ Feu-vos patrocinador ❤️
+
+ src/app/components/about/about.component.html
+ 33,34
+
+ about.become-a-sponsor
+
+
+ Navigate to https://mempool.space/sponsor to sponsor
+
+ src/app/components/about/about.component.html
+ 34
+
+
+ src/app/components/sponsor/sponsor.component.html
+ 10
+
+ about.navigate-to-sponsor
+
Enterprise Sponsors 🚀
Empreses patrocinadores 🚀
src/app/components/about/about.component.html
- 35,38
+ 38,41
about.sponsors.enterprise.withRocket
@@ -1419,54 +1432,48 @@
Patrocinadors de la comunitat ❤️
src/app/components/about/about.component.html
- 65,68
+ 159,162
about.sponsors.withHeart
-
- Become a sponsor ❤️
- Feu-vos patrocinador ❤️
+
+ Self-Hosted Integrations
src/app/components/about/about.component.html
- 77,78
+ 173,175
- about.become-a-sponsor
+ about.self-hosted-integrations
-
- Navigate to https://mempool.space/sponsor to sponsor
+
+ Wallet Integrations
src/app/components/about/about.component.html
- 78
+ 207,209
-
- src/app/components/sponsor/sponsor.component.html
- 6
-
- about.navigate-to-sponsor
-
-
- Community Integrations
- Integracions de la comunitat
-
- src/app/components/about/about.component.html
- 82,85
-
- about.integrations
+ about.wallet-integrations
Community Alliances
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Col·laboradors del projecte
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1474,7 +1481,7 @@
Project Members
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1483,7 +1490,7 @@
Mantenidors del projecte
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1492,44 +1499,27 @@
Sobre
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1564,8 +1554,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit 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
@@ -1583,17 +1573,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1614,15 +1608,22 @@
Liquid Asset page title
asset
-
+
Name
Nom
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1655,7 +1656,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1664,7 +1665,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1673,7 +1674,7 @@
Burned amount
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1682,11 +1683,11 @@
Circulating amount
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1719,7 +1720,7 @@
Error loading asset data.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1727,9 +1728,141 @@
Asset:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Actius
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Buscar actius
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Borrar
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Símbol
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Domini emissor
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID del actiu
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Error al carregar les dades dels actius.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Sense connexió
@@ -1739,7 +1872,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1756,7 +1889,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1773,7 +1906,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1786,15 +1919,15 @@
Panell
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1803,11 +1936,7 @@
Estadístiques
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1815,54 +1944,135 @@
Docs
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
-
- Next Block
+
+ Block Fee Rates
- src/app/components/block/block.component.html
- 7,8
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
- src/app/components/block/block.component.html
- 19,20
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
- Next Block
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
-
- Previous Block
+
+ Block Fees
- src/app/components/block/block.component.html
- 26,27
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
- Previous Block
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
-
- Timestamp
- Marca de temps
+
+ Fees
- src/app/components/block/block.component.html
- 55,57
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
- block.timestamp
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
Size
Mida
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
src/app/components/block/block.component.html
64,66
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
src/app/components/latest-blocks/latest-blocks.component.html
13,16
@@ -1873,22 +2083,68 @@
src/app/components/mempool-graph/mempool-graph.component.ts
- 257
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
src/app/dashboard/dashboard.component.html
- 94,97
+ 116,119
- block.size
Weight
Pes
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
src/app/components/block/block.component.html
68,70
- block.weight
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
+
+ Next Block
+
+ src/app/components/block/block.component.html
+ 7,8
+
+
+ src/app/components/block/block.component.html
+ 19,20
+
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
+ Next Block
+
+
+ Previous Block
+
+ src/app/components/block/block.component.html
+ 26,27
+
+ Previous Block
Median fee
@@ -1916,7 +2172,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1944,7 +2200,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -1964,15 +2220,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2006,11 +2262,15 @@
Quotes totals
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2020,11 +2280,11 @@
Subvenció + Quota
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2034,7 +2294,7 @@
Miner
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2043,7 +2303,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2051,7 +2311,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2060,7 +2320,27 @@
Dificultat
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2068,7 +2348,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2076,7 +2356,7 @@
Block Header Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2085,7 +2365,7 @@
Detalls
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2098,7 +2378,7 @@
Error loading block data.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2106,9 +2386,75 @@
Block :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Minat
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Copiat!
@@ -2117,802 +2463,123 @@
15
-
- API service
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Descripció
+
+ Difficulty Adjustment
+ Canvi de dificultat
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Restant
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Retorna els detalls sobre el canvi de dificultat
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
+
+ Estimate
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
+
+ Previous
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
+
+ Current Period
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Retorna les nostres quotes suggerides actuals per noves transaccions
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Codi de exemple
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Instal·lar el paquet
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Resposta
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -2953,24 +2620,28 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes per segon:
+
+ Incoming transactions
+ Transaccions entrants
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -2979,11 +2650,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -2992,11 +2663,11 @@
Unconfirmed
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3006,58 +2677,109 @@
Mida de la memòria
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Minat
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Blocs
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3065,31 +2787,55 @@
Gràfiques
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
Mode TV
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Rang de quotes
@@ -3099,23 +2845,6 @@
mempool-block.fee-span
-
- Total fees
- Quotes totals
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Següent bloc
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
@@ -3134,38 +2863,314 @@
Range
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
Sum
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Desconegut
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
+
+ Latest blocks
+ Últims blocs
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3179,13 +3184,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3196,6 +3201,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
@@ -3218,7 +3292,7 @@
Patrocinador
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3231,7 +3305,7 @@
Demanar factura
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3240,7 +3314,7 @@
Esperant la transacció...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3249,7 +3323,7 @@
Donació confirmada!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3258,7 +3332,7 @@
Gràcies!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3266,7 +3340,7 @@
Mempool by vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3274,7 +3348,7 @@
Filter
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3283,7 +3357,7 @@
Invertir
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3291,7 +3365,7 @@
Transaction vBytes per second (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3506,21 +3580,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Confirmat
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Vist per primera vegada
@@ -3597,26 +3661,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Mida
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Pes
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
@@ -3652,15 +3696,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3677,7 +3725,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3686,7 +3734,7 @@
(Noves monedes generades)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3694,7 +3742,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3703,7 +3751,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3713,7 +3761,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3722,7 +3770,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3730,15 +3778,23 @@
P2SH redeem script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3747,7 +3803,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3755,7 +3811,7 @@
Previous output script
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3763,28 +3819,15 @@
Previous output type
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Carregar-ho tot
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3793,7 +3836,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3803,29 +3846,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
@@ -3958,38 +3983,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Últims blocs
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Últimes transaccions
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -3998,7 +4001,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4007,7 +4010,7 @@
Quota
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4015,7 +4018,7 @@
Expand
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4023,7 +4026,7 @@
Collapse
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4032,7 +4035,7 @@
Quota mínima
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4041,7 +4044,7 @@
Purging
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4051,7 +4054,7 @@
Ús de memòria
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4060,72 +4063,92 @@
L-BTC in circulation
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Transaccions entrants
+
+ API service
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Canvi de dificultat
+
+ Endpoint
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Restant
+
+ Description
+ Descripció
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
+
+ Code Example
+ Codi de exemple
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Instal·lar el paquet
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Resposta
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf
index 2140f2217..e4b913ee2 100644
--- a/frontend/src/locale/messages.cs.xlf
+++ b/frontend/src/locale/messages.cs.xlf
@@ -5,16 +5,15 @@
Close
Zavřít
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Slajd z
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Předchozí
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Další
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Vybrat měsíc
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Vybrat rok
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Předchozí měsíc
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Příští měsíc
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Hodiny
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minuty
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Přírůstek hodin
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Snížení hodin
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Přírůstek minut
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Snížení minut
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Sekundy
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Přírůstek sekund
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Snížení sekund
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Zavřít
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Registrovaná aktiva
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Vyhledat aktivum
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Vymazat
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Jméno
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Vydavatelská doména
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID aktiva
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Chyba při načítání dat aktiv.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Aktiva
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Časové razítko
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Zobrazit všechny »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Podmínky služby
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Ochrana osobních údajů
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Nabídky k nákupu
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Potvrzeno
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Poplatek za zařazení aktiva
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Vytváříme mempool a blockchain explorer pro bitcoinovou komunitu se zaměřením na trh transakčních poplatků a vícevrstvý ekosystém, bez reklamy, altcoinů a sledovačů třetích stran.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Firemní sponzoři 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Komunitní sponzoři ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Staňte se sponzorem ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Přejděte na stránku https://mempool.space/sponsor a sponzorujte
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Komunitní integrace
+
+ Enterprise Sponsors 🚀
+ Firemní sponzoři 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Komunitní sponzoři ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Komunitní aliance
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Přispěvatelé projektu
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Členové projektu
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Správci projektu
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
O projektu
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig z
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Počet transakcí na této adrese přesahuje limit serveru Electrum Zvažte raději zobrazení této adresy na oficiálních stránkách 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Jméno
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Spálené množství
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Obíhající množství
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Chyba při načítání dat aktiva.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Aktivum:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Aktiva
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Vyhledat aktivum
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Vymazat
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Vydavatelská doména
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID aktiva
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Chyba při načítání dat aktiv.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Offline
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Rozcestník
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Statistiky
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Dokumenty
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Velikost
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Váha
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Další blok
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Časové razítko
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Velikost
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Váha
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Střední poplatek
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Celkové poplatky
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Vytěžené + poplatky:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Těžař
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bity
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merklův kořen
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Obtížnost
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Hlavička bloku Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Detaily
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Chyba při načítání dat bloku.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Blok :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Vytěžen
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ Počet TX
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Zkopírováno!
@@ -2164,850 +2503,126 @@
15
-
- API service
- API služba
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Endpoint
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Popis
+
+ Difficulty Adjustment
+ Změna obtížnosti
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Zbývá
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Vrátí podrobnosti o nastavení obtížnosti.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Poskytuje seznam dostupných měn pro danou základní měnu.
+
+ Estimate
+ Odhad
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Poskytuje seznam otevřených nabídkových cen pro jeden trh.
+
+ Previous
+ Předchozí
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Poskytuje údaje o vysokých/nízkých/otevřených/zavřených hodnotách pro daný trh. To lze použít k vytvoření svíčkového grafu.
+
+ Current Period
+ Současné období
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Poskytuje seznam dostupných trhů.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Poskytuje seznam otevřených nabídek pro jeden trh.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Poskytuje 24hodinový cenový ticker pro jeden trh nebo všechny trhy
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Poskytuje seznam dokončených obchodů pro jeden trh.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Poskytuje pravidelné údaje o objemu v základní měně pro jeden nebo všechny trhy.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Vrátí statistiku všech transakcí Bisq.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Vrátí podrobnosti o adrese. Dostupná pole: address , chain_stats , a mempool_stats . chain,mempool _stats každý obsahuje objekt tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , a spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Získá historii transakcí pro zadanou adresu/scripthash, seřazené od nejnovějšího. Vrátí až 50 transakcí mempoolu plus prvních 25 potvrzených transakcí. Další potvrzené transakce si můžete vyžádat pomocí :last_seen_txid (viz níže).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Získejte potvrzenou historii transakcí pro zadanou adresu/scripthash, seřazené podle nejnovějších jako první. Vrátí 25 transakcí na stránku. Více lze vyžádat zadáním poslední hodnoty zobrazené v předchozím dotazu.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Získejte nepotvrzenou historii transakcí pro zadanou adresu/scripthash. Vrátí až 50 transakcí (bez stránkování).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Získá seznam neutracených výstupů transakcí spojených s adresou/scripthash. Dostupná pole: txid , vout , value a status (se stavem financování tx). K dispozici je také pole valuecommitment , které se může objevit místo value , a následující další pole: asset / assetcommitment , nonce / noncecommitment , surjection_proof a range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Vrátí informace o Liquid aktivu.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Vrátí transakce spojené se zadaným Liquid aktivem. U nativního aktiva sítě vrátí seznam transakcí peg in, peg out a spálené transakce. U aktiv vydaných uživatelem vrátí seznam transakcí vystavení, opětovného vystavení a spálené transakce. Nezahrnuje pravidelné transakce převádějící toto aktivum.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Získejte aktuální celkovou nabídku určeného aktiva. U nativního aktiva (L-BTC) se to počítá jako [chain,mempool] _stats.peg_in_amount - [chain,mempool] _stats.peg_out_amount - [chain,mempool] _stats.burned_amount. U vydaných aktiv se to počítá jako [chain,mempool] _stats.issued_amount - [chain,mempool] _stats.burned_amount. Není k dispozici pro aktiva se zaslepenými emisemi. Pokud je zadáno /decimal, vrátí nabídku jako desetinné místo podle dělitelnosti aktiva. Jinak vrácenou v základních jednotkách.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Vrací podrobnosti o bloku. Dostupná pole: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , a previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Vrátí hexadecimálně zakódovanou hlavičku bloku.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Vrací hash bloku aktuálně na :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Vrátí nezpracovanou blokovou reprezentaci v binárním formátu.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Vrací stav potvrzení bloku. Dostupná pole: in_best_chain (boolean, false pro osiřelé bloky), next_best (hash následujícího bloku, dostupný pouze pro bloky v nejlepším řetězci).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Vrátí výšku posledního bloku.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Vrátí hash posledního bloku.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Vrátí transakci na indexu :index v rámci zadaného bloku.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Vrátí seznam všech transakcí v bloku.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Vrací seznam transakcí v bloku (až 25 transakcí začínajících na start_index) . Vrácené transakce nemají pole status , protože všechny transakce mají stejný stav bloku a potvrzení.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Vrací 10 nejnovějších bloků začínajících na špici nebo na :start_height , pokud je zadáno.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Vrátí aktuální mempool jako projektované bloky.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Vrátí aktuálně doporučené poplatky za nové transakce.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Vrátí aktuální statistiky nevyřízených položek mempoolu.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Získejte úplný seznam txid v mempoolu jako pole. Pořadí txid je libovolné a neodpovídá bitcoindu.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Získá seznam posledních 10 transakcí, které vstoupily do mempoolu. Každý objekt transakce obsahuje zjednodušené přehledové údaje s následujícími poli: txid , fee , vsize a value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Vrátí předky a nejlepší potomky poplatků za transakci.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Vrátí podrobnosti o transakci. Dostupná pole: txid , version , locktime , size , weight , fee , vin , vout a status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Vrátí transakci serializovanou jako hexadecimální.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Vrací merkel důkaz o začlenění transakce ve formátu bitcoind merkleblock .
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Vrací merkle důkaz o začlenění transakce pomocí formátu Electrum's blockchain.transaction.get_merkle .
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Vrací stav utracení výstupu transakce. Dostupná pole: spent (boolean), txid (nepovinné), vin (nepovinné) a status (nepovinné, stav utraceného tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Vrátí stav výdajů všech výstupů transakcí.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Vrátí transakci jako binární data.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Vrací stav potvrzení transakce. Dostupná pole: confirmed (boolean), block_height (nepovinné) a block_hash (nepovinné).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Vrátí :length posledních transakcí Bisq, počínaje :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Vyšle nezpracované transakce do sítě. Transakce by měla být v těle požadavku uvedena v hex kodování. Při úspěchu bude vráceno txid .
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Výchozí push: akce: 'want', data: ['blocks', ...] pro vyjádření toho, co chcete pushnout. K dispozici: blocks , mempool-blocks , live-2h-chart a stats . Push transakce související s adresou: 'track-address': '3PbJ...bF9B' pro příjem všech nových transakcí obsahujících tuto adresu jako vstup nebo výstup. Vrací pole transakcí. address-transactions pro nové transakce mempoolu a block-transactions pro nové transakce potvrzené blokem.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Příklad kódu
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Nainstalujte balíček
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Odezva
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Dokumentace
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Ochrana osobních údajů
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytů za sekundu:
+
+ Incoming transactions
+ Příchozí transakce
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Backend se synchronizuje
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
Nepotvrzeno
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
Velikost Mempoolu
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- bloky
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- blok
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Vytěžen
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Bloky
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
Grafy
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV pohled
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Dokumentace
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Rozsah poplatků
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Celkové poplatky
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Další blok
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Zásobník bloků mempoolu
@@ -3236,7 +2912,7 @@
Rozsah
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
Součet
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Neznámo
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Identifikováno podle výplatní adresy: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Identifikováno podle tagu coinbase: ' '
+
+ Latest blocks
+ Poslední bloky
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Transakční Hex
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, výška bloku, hash nebo adresa
@@ -3326,7 +3344,7 @@
Sponzor
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
Vyžádat si fakturu
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
Čekání na transakci...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
Dar potvrzen!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
Děkujeme!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
Mempool v vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
Filtr
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
Převrátit
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
Transakce vBytů za sekundu (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Potvrzeno
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Poprvé viděna
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Velikost
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Váha
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Locktime
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(Nově vytvořené mince)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
P2SH redeem skript
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH witness skript
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
Předchozí výstupní skript
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
Předchozí typ výstupu
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Načíst vše
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out na
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
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.
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Poslední bloky
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- Počet TX
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Poslední transakce
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
Poplatek
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
Rozšířit
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
Zavřít
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
Minimální poplatek
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
Čištění
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
Využití paměti
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
L-BTC v oběhu
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Příchozí transakce
+
+ API service
+ API služba
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Změna obtížnosti
+
+ Endpoint
+ Endpoint
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Zbývá
+
+ Description
+ Popis
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Odhad
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Výchozí push: akce: 'want', data: ['blocks', ...] pro vyjádření toho, co chcete pushnout. K dispozici: blocks , mempool-blocks , live-2h-chart a stats . Push transakce související s adresou: 'track-address': '3PbJ...bF9B' pro příjem všech nových transakcí obsahujících tuto adresu jako vstup nebo výstup. Vrací pole transakcí. address-transactions pro nové transakce mempoolu a block-transactions pro nové transakce potvrzené blokem.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Předchozí
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Současné období
+
+ Code Example
+ Příklad kódu
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Nainstalujte balíček
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Odezva
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf
index d6fe70d9a..c7fe1399e 100644
--- a/frontend/src/locale/messages.de.xlf
+++ b/frontend/src/locale/messages.de.xlf
@@ -5,16 +5,16 @@
Close
Schließen
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Folie von
+ Slide of
+ Seite von
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
Previous
Vorherige
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Nächstes
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Monat auswählen
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Jahr auswählen
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +62,216 @@
Previous month
Vorheriger Monat
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Nächster Monat
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Stunden
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minuten
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Stunden erhöhen
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Stunden verringern
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Minuten erhöhen
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Minuten verringern
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Sekunden
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Sekunden erhöhen
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Sekunden verringern
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Schließen
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Registrierte Vermögenswerte
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Vermögenswert suchen
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Löschen
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Name
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Ausstellerdomäne
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- Vermögenswert ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Fehler beim Laden der Daten der Vermögenswerte.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Vermögenswerte
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +343,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +368,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +418,7 @@
block.hash
-
+
Timestamp
Zeitstempel
@@ -535,14 +431,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +501,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +534,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +549,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +570,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +733,9 @@
bisq-dashboard.market-price-title
-
- View all »
- Alles anzeigen »
+
+ View more »
+ Mehr anzeigen »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +745,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Nutzungsbedingungen
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Datenschutzbestimmungen
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Kaufangebote
@@ -943,6 +908,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +978,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1012,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1034,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1046,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1088,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1110,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1209,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1233,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Bestätigt
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Auflistungsgebühr für Vermögenswerten
@@ -1412,38 +1407,20 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Aufbau eines Mempool- und Blockchain-Explorers für die Bitcoin-Community, der sich auf den Transaktionsgebührenmarkt und das mehrschichtige Ökosystem konzentriert, ohne Werbung, Altcoins oder Drittanbieter-Tracker.
+
+ Our mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, completely self-hosted without any trusted third-parties.
+ Unser Mempool- und Blockchain-Explorer für die Bitcoin-Community, der sich auf den Markt für Transaktionsgebühren und das mehrschichtige Ökosystem konzentriert und vollständig selbst gehostet wird, ohne vertrauenswürdige Drittanbieter.
src/app/components/about/about.component.html
- 13,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Unternehmenssponsoren
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Community-Sponsoren ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Werde ein Sponsor ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1429,74 @@
Gehe zu https://mempool.space/sponsor , um zu sponsern
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Community-Integrationen
+
+ Enterprise Sponsors 🚀
+ Unternehmenssponsoren
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Community-Sponsoren ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+ Selbst gehostete Integrationen
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+ Wallet-Integrationen
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Community-Allianzen
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+ Projektübersetzer
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Projektmitwirkende
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1505,7 @@
Projektmitglieder
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1514,7 @@
Projektbetreuer
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1523,28 @@
Über
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- Multisig von
+
+ Multisig of
+ Multisig von
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1582,9 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Die Anzahl der Transaktionen an dieser Adresse überschreitet das Electrum-Serverlimit Betrachten der Adresse ist Möglich auf der offiziellen Mempool-Website:
+
+ 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1602,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1638,22 @@
Liquid Asset page title
asset
-
+
Name
Name
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1690,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1700,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1710,7 @@
Verbrannte Menge
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1720,11 @@
Umlaufmenge
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,18 +1761,153 @@
Fehler beim Laden der Vermögenswert-Daten.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
Asset:
- Asset:
+ Vermögenswert:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+ Gruppe von Vermögenswerten
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Vermögenswerte
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+ Hervorgehoben
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+ Alle
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Vermögenswert suchen
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Löschen
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Ausstellerdomäne
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ Vermögenswert ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Fehler beim Laden der Daten der Vermögenswerte.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Offline
@@ -1777,7 +1917,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1934,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1951,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1964,15 @@
Dashboard
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1981,7 @@
Statistiken
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1990,190 @@
Dokumentation
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+ Blockgebührensätze
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+ Blockgebühren
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+ Gebühren
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+ Blockbelohnungen
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ Reward
+ Belohnung
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 15,17
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+ Blockgrößen und Gewichte
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Größe
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Gewicht
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Nächster Block
@@ -1873,6 +2185,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2200,6 @@
Previous Block
-
- Timestamp
- Zeitstempel
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Größe
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Gewicht
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Mediangebühr
@@ -1957,7 +2226,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2254,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2274,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2317,15 @@
Gesamtgebühren
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2335,11 @@
Subvention + Gebühr
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2349,7 @@
Miner
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2358,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2367,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2376,27 @@
Schwierigkeit
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2405,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2414,7 @@
Block-Header Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2423,7 @@
Details
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2437,7 @@
Fehler beim Laden der Blockdaten.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2446,76 @@
Block :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Gefunden
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TX
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Kopiert!
@@ -2164,850 +2524,131 @@
15
-
- API service
- API-Dienst
+
+ Adjusted
+ Angepasst
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Endpunkt
+
+ Change
+ Änderung
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Beschreibung
+
+ Difficulty Adjustment
+ Schwierigkeitsanpassung
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Verbleibend
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+ Blöcke
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Gibt Details zu der Schwierigkeitsanpassung zurück.
+
+ block
+ Block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Stellt eine Liste der verfügbaren Währungen für eine bestimmte Basiswährung bereit.
+
+ Estimate
+ Schätzung
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Bietet eine Liste der offenen Angebotspreise für einen einzelnen Markt.
+
+ Previous
+ Vorherige
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Liefert Hoch-/Tief-/Eröffnungs-/Schlußkurse für einen bestimmten Markt. Dies kann verwendet werden, um ein Kerzendiagramm zu erstellen.
+
+ Current Period
+ Laufende Periode
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Bietet eine Liste der verfügbaren Märkte.
+
+ Next Halving
+ Nächste Halbierung
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Bietet eine Liste offener Angebotsdetails für einen einzelnen Markt.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Bietet einen 24-Stunden-Preisticker für einen einzelnen Markt oder alle Märkte
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Bietet eine Liste der abgeschlossenen Transaktionen für einen einzigen Markt.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Liefert periodische Volumendaten in Bezug auf die Basiswährung für einen oder alle Märkte.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Gibt Statistiken über alle Bisq-Transaktionen zurück.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Gibt Details zu einer Adresse zurück. Verfügbare Felder: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , und spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Gibt den Transaktionsverlauf für die angegebene Adresse/Scripthash zurück, sortiert nach neuesten zuerst. Gibt bis zu 50 Mempool-Transaktionen und die ersten 25 bestätigten Transaktionen zurück. Weitere bestätigte Transaktionen können mit :last_seen_txid angefordert werden (siehe unten).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Erhalten Sie einen bestätigten Transaktionsverlauf für die angegebene Adresse / den angegebenen Scripthash, sortiert nach der neuesten zuerst. Gibt 25 Transaktionen pro Seite zurück. Weitere können angefordert werden, indem die letzte txid angegeben wird, die in der vorherigen Abfrage angezeigt wurde.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Abrufen des unbestätigten Transaktionsverlaufs für die angegebene Adresse / den angegebenen Scripthash. Gibt bis zu 50 Transaktionen zurück (kein Paging).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Liste der nicht ausgegebenen Transaktions-Outputs abrufen, die der Adresse/dem Scripthash zugeordnet sind. Verfügbare Felder: txid , vout , value , und status (mit dem Status der Funding-Tx). Da ist auch ein valuecommitment Feld das statt value und folgenden zusätzlichen Feldern: asset / assetcommitment , nonce / noncecommitment , surjection_proof , und range_proof auftauchen kann.
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Gibt Informationen zu einem Liquid Vermögenswert zurück.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Gibt Transaktionen zurück, die dem angegebenen Liquid Vermögenswert zugeordnet sind. Gibt für den nativen Vermögenswert des Netzwerks eine Liste der Transaktionen peg in, peg out, und burn Transaktionen zurück. Gibt für vom Benutzer ausgegebene Vermögenswerte eine Liste der peg in, peg out, und burn Transaktionen zurück. Beinhaltet keine regulären Transaktionen, die diesen Vermögenswert übertragen.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Rufen Sie das aktuelle Gesamtangebot des angegebenen Assets ab. Für das native Asset (L-BTC) wird dies berechnet als [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Für ausgegebene Vermögenswerte wird dies berechnet als [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Nicht verfügbar für Vermögenswerte mit blinded issuances. Wenn /decimal ,angegeben ist, wird das Angebot entsprechend der Teilbarkeit des Vermögenswertes als Dezimalzahl zurückgegeben. Andernfalls in Basiseinheiten zurückgegeben.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Gibt Details zu einem Block zurück. Verfügbare Felder: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , und previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Gibt den hex-kodierten Block-Header zurück.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Gibt den Hash des Blocks derzeit bei :height zurück.
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Gibt die Rohblockdarstellung in Binärform zurück.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Gibt den Bestätigungsstatus eines Blocks zurück. Verfügbare Felder: in_best_chain (boolean, false für verwaiste Blöcke), next_best (der Hash des nächsten Blocks, nur für Blöcke in der besten Kette verfügbar).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Gibt die Höhe des letzten Blocks zurück.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Gibt den Hash des letzten Blocks zurück.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Gibt die Transaktion am Index :index innerhalb des angegebenen Blocks zurück.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Gibt eine Liste aller txids im Block zurück.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Gibt eine Liste der Transaktionen im Block zurück (bis zu 25 Transaktionen beginnend bei start_index ). Hier zurückgegebene Transaktionen haben nicht das Feld status , da alle Transaktionen denselben Block- und Bestätigungsstatus haben.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Gibt die 10 neuesten Blöcke zurück, beginnend an der Spitze oder bei :start_height , falls angegeben.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Gibt den aktuellen Mempool als projizierte Blöcke zurück.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Gibt unsere derzeit empfohlenen Gebühren für neue Transaktionen zurück.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Gibt die aktuellen Mempool-Backlog-Statistiken zurück.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Abruf der vollständigen Liste der txids im Mempool als Array. Die Reihenfolge der txids ist willkürlich und stimmt nicht mit bitcoind überein.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Liste der letzten 10 Transaktionen, die in den Mempool aufgenommen wurden. Jedes Transaktionsobjekt enthält vereinfachte Übersichtsdaten mit den folgenden Feldern: txid , fee , vsize , und value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Gibt die Vorfahren und die besten Nachkommensgebühren für eine Transaktion zurück.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Gibt Details zu einer Transaktion zurück. Verfügbare Felder: txid , version , locktime , size , weight , fee , vin , vout , und status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Gibt eine als Hex serialisierte Transaktion zurück.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Gibt einen Merkle-Einschlussnachweis für die Transaktion zurück, unter Benutzung des Bitcoind merkleblock Formats.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Gibt einen Merkle-Einschlussnachweis für die Transaktion zurück, unter Benutzung des Electrum blockchain.transaction.get_merkle Formats.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Gibt den Ausgabestatus einer Transaktionsausgabe zurück. Verfügbare Felder: spent (boolean), txid (Optional), vin (optional), und status (Optional, den Status der Spending-Tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Gibt den Ausgabenstatus aller outputs der Transaktion zurück.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Gibt eine Transaktion als Binärdaten zurück.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Gibt den Bestätigungsstatus einer Transaktion zurück. Verfügbare Felder: confirmed (Boolean), block_height (Optional), und block_hash (Optional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Gibt :length der letzten Bisq-Transaktionen zurück, beginnend mit :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Senden einer Rohtransaktion an das Netzwerk. Die Transaktion sollte als Hex im Request-Body angegeben werden. Die txid wird bei Erfolg zurückgegeben.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Standard Senden: action: 'want', data: ['blocks', ...] um auszudrücken, was gepusht werden soll. Verfügbar: blocks , mempool-blocks , live-2h-chart , und stats . Sende Transaktionen bezogen auf die Adresse: 'track-address': '3PbJ...bF9B' um alle neuen Transaktionen mit der Adresse als Input oder Output enthalten zu empfangen. Gibt Array von Tansaktionen zurück. address-transactions für neue Mempool-Transaktionen, und block-transactions
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Codebeispiel
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Installationspaket
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Antwort
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Dokumentation
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Datenschutzbestimmungen
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2689,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes pro Sekunde:
+
+ Incoming transactions
+ Eingehende Transaktionen
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Das Backend synchronisiert
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2720,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2734,11 @@
Unbestätigt
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2748,118 @@
Mempool Größe
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- Blöcke
+
+ Mining
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- Block
+
+ Pools Ranking
+ Pool-Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Geschürft
+
+ Pools Dominance
+ Pool-Dominanz
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Blöcke
+
+ Hashrate & Difficulty
+ Hashrate & Schwierigkeit
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+ Pool historische Dominanz
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+ Blöcke am indizieren
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+ Indizierung der Netzwerk-Hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+ Indizierung von Pool-Hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2867,57 @@
Grafiken
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV-Ansicht
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Dokumentation
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Gebührenspanne
@@ -3198,23 +2927,6 @@
mempool-block.fee-span
-
- Total fees
- Gesamtgebühren
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Nächster Block
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Stapel von Mempool-Blöcken
@@ -3236,7 +2948,7 @@
Bereich
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2956,329 @@
Summe
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Unbekannt
+
+ Reward stats
+ Belohnungsstatistiken
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Identifiziert durch Auszahlungsadresse: ' '
+
+ (144 blocks)
+ (144 Blöcke)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Identifiziert durch Coinbase-Tag: ' '
+
+ Latest blocks
+ Neueste Blöcke
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+ Anpassungen
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+ Pools Glück (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+ Blöcke (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+ Anzahl der Pools (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+ Rang
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+ Leere Blöcke
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+ Alle Miner
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+ Blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+ Alles anzeigen
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+ Ausblenden
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+ Geschätzt
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+ Gemeldet
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+ Glück
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+ Gefundene Blöcke
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3293,14 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Transaktion Hexadezimal
+
+ Transaction hex
+ Transaktion hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3311,81 @@
transaction.hex
+
+ Miners Reward
+ Miner-Belohnung
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+ Betrag, der in den letzten 144 Blöcken an Miner gezahlt wurde
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward Per Tx
+ Belohnung pro 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+ Durchschnittliche Miner-Belohnung pro Transaktion in den letzten 144 Blöcken
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ 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
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, Blockhöhe, Hash oder Adresse
@@ -3326,7 +3409,7 @@
Sponsor
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3422,7 @@
Rechnung anfordern
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3431,7 @@
Warten auf die Transaktion ...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3440,7 @@
Spende bestätigt!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3449,7 @@
Vielen Dank!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3458,7 @@
Mempool in vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3467,7 @@
Filter
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3476,7 @@
Umkehren
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3485,7 @@
Transaktion vBytes pro Sekunde (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3704,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Bestätigt
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Zuerst gesehen
@@ -3648,7 +3721,7 @@
ETA
- ca. Zeit bis geschürft ist
+ Vorauss. Zeit bis Schürfung
src/app/components/transaction/transaction.component.html
108,109
@@ -3714,26 +3787,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Größe
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Gewicht
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Sperrzeit
@@ -3771,15 +3824,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3853,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3862,7 @@
(Neu generierte Coins)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3871,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3880,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3890,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3900,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3909,25 @@
P2SH redeem script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH witness script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3936,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3945,7 @@
Vorheriges Output Script
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3954,16 @@
Vorheriger Ausgabetyp
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Alle nachladen
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out zu
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3972,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3982,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- Daten
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Diese Transaktion sparte % an Gebühren durch die Verwendung von nativem SegWit-Bech32
@@ -4094,38 +4128,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Neueste Blöcke
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TX
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Neueste Transaktionen
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4146,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4155,7 @@
Gebühr
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4164,7 @@
Erweitern
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4173,7 @@
Reduzieren
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4182,7 @@
Mindestgebühr
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4192,7 @@
Streichung
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4202,7 @@
Speichernutzung
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4212,95 @@
L-BTC im Umlauf
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Eingehende Transaktionen
+
+ API service
+ API-Dienst
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Schwierigkeitsanpassung
+
+ Endpoint
+ Endpunkt
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Verbleibend
+
+ Description
+ Beschreibung
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Schätzung
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Standard Senden: action: 'want', data: ['blocks', ...] um auszudrücken, was gepusht werden soll. Verfügbar: blocks , mempool-blocks , live-2h-chart , und stats . Sende Transaktionen bezogen auf die Adresse: 'track-address': '3PbJ...bF9B' um alle neuen Transaktionen mit der Adresse als Input oder Output enthalten zu empfangen. Gibt Array von Tansaktionen zurück. address-transactions für neue Mempool-Transaktionen, und block-transactions
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Vorherige
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Laufende Periode
+
+ Code Example
+ Codebeispiel
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Installationspaket
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Antwort
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf
index 9553443a7..3915c7ac7 100644
--- a/frontend/src/locale/messages.en_US.xlf
+++ b/frontend/src/locale/messages.en_US.xlf
@@ -4,337 +4,242 @@
Close
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
Previous
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
Previous month
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -401,15 +306,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -425,15 +330,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -472,7 +377,7 @@
block.hash
-
+
Timestamp
src/app/bisq/bisq-block/bisq-block.component.html
@@ -484,14 +389,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -531,13 +455,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -547,10 +487,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -565,16 +501,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -589,23 +521,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -734,8 +674,8 @@
bisq-dashboard.market-price-title
-
- View all »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -745,32 +685,65 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
@@ -865,6 +838,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -914,11 +903,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -945,7 +934,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -966,7 +955,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -977,7 +966,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1017,7 +1006,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1038,7 +1027,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1131,7 +1120,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1153,9 +1142,22 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
@@ -1294,34 +1296,18 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1329,35 +1315,67 @@
Navigate to https://mempool.space/sponsor to sponsor
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
+
+ Enterprise Sponsors 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1365,7 +1383,7 @@
Project Members
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1373,7 +1391,7 @@
Project Maintainers
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1381,44 +1399,27 @@
About
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1452,8 +1453,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit 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
@@ -1470,17 +1471,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1500,14 +1505,21 @@
Liquid Asset page title
asset
-
+
Name
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1540,7 +1552,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1549,7 +1561,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1558,7 +1570,7 @@
Burned amount
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1567,11 +1579,11 @@
Circulating amount
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1604,7 +1616,7 @@
Error loading asset data.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1612,9 +1624,134 @@
Asset:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
@@ -1623,7 +1760,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1639,7 +1776,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1655,7 +1792,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1667,15 +1804,15 @@
Dashboard
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1683,11 +1820,7 @@
Stats
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1695,52 +1828,134 @@
Docs
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
-
- Next Block
+
+ Block Fee Rates
- src/app/components/block/block.component.html
- 7,8
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
- src/app/components/block/block.component.html
- 19,20
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
- Next Block
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
-
- Previous Block
+
+ Block Fees
- src/app/components/block/block.component.html
- 26,27
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
- Previous Block
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
-
- Timestamp
+
+ Fees
- src/app/components/block/block.component.html
- 55,57
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
- block.timestamp
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
Size
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
src/app/components/block/block.component.html
64,66
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
src/app/components/latest-blocks/latest-blocks.component.html
13,16
@@ -1751,21 +1966,67 @@
src/app/components/mempool-graph/mempool-graph.component.ts
- 257
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
src/app/dashboard/dashboard.component.html
- 94,97
+ 116,119
- block.size
Weight
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
src/app/components/block/block.component.html
68,70
- block.weight
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
+
+ Next Block
+
+ src/app/components/block/block.component.html
+ 7,8
+
+
+ src/app/components/block/block.component.html
+ 19,20
+
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
+ Next Block
+
+
+ Previous Block
+
+ src/app/components/block/block.component.html
+ 26,27
+
+ Previous Block
Median fee
@@ -1791,7 +2052,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1819,7 +2080,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -1839,15 +2100,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -1880,11 +2141,15 @@
Total fees
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -1893,11 +2158,11 @@
Subsidy + fees:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -1906,7 +2171,7 @@
Miner
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -1914,7 +2179,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -1922,7 +2187,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -1930,7 +2195,27 @@
Difficulty
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -1938,7 +2223,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -1946,7 +2231,7 @@
Block Header Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -1954,7 +2239,7 @@
Details
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -1967,7 +2252,7 @@
Error loading block data.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -1975,9 +2260,73 @@
Block :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
@@ -1985,795 +2334,121 @@
15
-
- API service
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
+
+ Difficulty Adjustment
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
+
+ Estimate
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
+
+ Previous
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
+
+ Current Period
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -2811,23 +2486,27 @@
fees-box.high-priority
-
- Tx vBytes per second:
+
+ Incoming transactions
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -2835,11 +2514,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -2848,11 +2527,11 @@
Unconfirmed
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -2861,86 +2540,163 @@
Mempool size
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
Graphs
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
@@ -2949,21 +2705,6 @@
mempool-block.fee-span
-
- Total fees
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
@@ -2982,37 +2723,313 @@
Range
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
Sum
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
+
+ Latest blocks
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3026,13 +3043,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3043,6 +3060,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
@@ -3063,7 +3149,7 @@
Sponsor
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3075,7 +3161,7 @@
Request invoice
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3083,7 +3169,7 @@
Waiting for transaction...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3091,7 +3177,7 @@
Donation confirmed!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3099,7 +3185,7 @@
Thank you!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3107,7 +3193,7 @@
Mempool by vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3115,7 +3201,7 @@
Filter
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3123,7 +3209,7 @@
Invert
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3131,7 +3217,7 @@
Transaction vBytes per second (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3344,20 +3430,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
@@ -3429,24 +3506,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
@@ -3480,14 +3539,18 @@
Transaction fee
transaction.fee
-
+
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3502,7 +3565,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3510,7 +3573,7 @@
(Newly Generated Coins)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3518,7 +3581,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3526,7 +3589,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3535,7 +3598,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3544,7 +3607,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3552,15 +3615,23 @@
P2SH redeem script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3568,7 +3639,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3576,7 +3647,7 @@
Previous output script
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3584,27 +3655,15 @@
Previous output type
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3612,7 +3671,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3621,28 +3680,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
@@ -3771,35 +3813,15 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -3807,7 +3829,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -3815,7 +3837,7 @@
Fee
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -3823,7 +3845,7 @@
Expand
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -3831,7 +3853,7 @@
Collapse
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -3839,7 +3861,7 @@
Minimum fee
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -3848,7 +3870,7 @@
Purging
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -3857,7 +3879,7 @@
Memory usage
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -3866,69 +3888,87 @@
L-BTC in circulation
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
+
+ API service
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
+
+ Endpoint
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
+
+ Description
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
+
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
+
+ Code Example
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf
index 8f01c450d..7d8ced057 100644
--- a/frontend/src/locale/messages.es.xlf
+++ b/frontend/src/locale/messages.es.xlf
@@ -5,16 +5,15 @@
Close
Cerrar
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Diapositiva de
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Previo
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Siguiente
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Seleccionar mes
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Seleccionar año
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Mes anterior
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Siguiente mes
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Horas
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minutos
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Incrementar horas
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Reducir horas
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Incrementar minutos
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Reducir minutos
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Segundos
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Incrementar segundos
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Reducir segundos
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Cerrar
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Activos registrados
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Buscar activos
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Borrar
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Nombre
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Dominio del emisor
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID del activo
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Error al cargar los datos de los activos.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Activos
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Sello de tiempo
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Ver todos »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Términos de servicio
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Política de Privacidad
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Ofertas de Compra
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Confirmado
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Tasa de listado de activo
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Construímos un explorador de mempool y cadena de bloques para la comunidad Bitcoin, con el foco en el mercado de transacciones y el ecosistema multicapa, sin anuncios, altcoins o rastreadores de terceros.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Empresas patrocinadoras 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Patrocinadores de la comunidad ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Sé patrocinador ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Navega a https://mempool.space/sponsor para patrocinar
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Integraciones de la comunidad
+
+ Enterprise Sponsors 🚀
+ Empresas patrocinadoras 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Patrocinadores de la comunidad ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Alianzas de la comunidad
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Contribuyentes al proyecto
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Miembros del proyecto
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Mantenedores del proyecto
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
Sobre nosotros
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multifirma de
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- El número de transacciones en esta dirección excede el límite del servidor Electrum Considere ver esta dirección en la web oficial de mempool en su lugar:
+
+ 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
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Nombre
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Cantidad quemada
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Cantidad en circulación
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Error cargando datos del activo
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Activo:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Activos
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Buscar activos
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Borrar
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Dominio del emisor
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID del activo
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Error al cargar los datos de los activos.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Sin conexión
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Dashboard
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Estadísticas
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Documentos
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Tamaño
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Peso
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Siguiente bloque
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Sello de tiempo
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Tamaño
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Peso
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Tasa mediana
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Total de tasas
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Subsidio + tasas:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Minero
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Raíz de Merkle
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Dificultad
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Block Header Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Detalles
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Error cargando datos de bloque
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Bloque :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Minado
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Copiado!
@@ -2164,850 +2503,126 @@
15
-
- API service
- Servicio API
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Endpoint
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Descripción
+
+ Difficulty Adjustment
+ Ajuste de Dificultad
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Restante
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Devuelve detalles sobre el ajuste de la dificultad.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Entrega una lista de monedas disponibles para una determinada moneda base.
+
+ Estimate
+ Estimada
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Entrega una lista de ofertas abiertas para un mercado individual.
+
+ Previous
+ Previo
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Entrega datos máx/mín/apertura/cierre para un determinado mercado. Puede usarse para generar un gráfico de velas.
+
+ Current Period
+ Período Actual
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Entrega una lista de mercados disponibles.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Entrega una lista de detalles para un mercado único.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Entrega un ticker de precio de 24h para un mercado único o todos los mercados
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Entrega una lista de intercambios completados para un mercado único
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Entrega datos de volumen periódicos en términos de moneda base para uno o todos los mercados.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Muestra estadísticas sobre todas las transacciones de Bisq.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Devuelve detalles acerca de una dirección. Campos disponibles: dirección , chain_stats , y mempool_stats . chain,mempool _stats cada cual contiene un objeto con tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , y spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Obtén el historial de transacciones para una determinada dirección/scripthash determinada, ordenada desde la más nueva primero. Devuelve hasta 50 transacciones de mempool más las primeras 25 transacciones confirmadas. Puede solicitar más transacciones confirmadas usando :last_seen_txid (ver abajo).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Obtiene la historia de una transacción confirmada para la dirección/scripthash especificada, ordenando primero los más recientes. Retorna hasta 25 transacciones por página. Se pueden solicitar más especificando el último txid visto por la consulta anterior.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Obtiene la historia de una transacción sin confirmar para la dirección/scripthash especificada. Retorna hasta 50 transacciones (sin paginación).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Obtén la lista outputs de transacciones sin gastar (UTXO) asociadas a la dirección/scripthash. Campos disponibles. txid , vout , value , y status (con el estado de transacción de fondeo). También hay un campo valuecommitment que puede aparecer en lugar de value , junto a los siguientes campos adicionales: asset / assetcommitment , nonce / noncecommitment , surjection_proof , y range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Muestra información acerca de activos de Liquid.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Retorna las transacciones asociadas con el activo Liquid especificado. Para el activo nativo de la red, devuelve una lista de los "peg in", "peg out", y transacciones de quemado (burn). Para activos emitidos por el usuario, retorna una lista de emisión, re-emisión, y transacciones de quemado. No incluye transacciones regulares de transferencia del activo.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Obtiene la oferta total actual para el activo especificado. Para el activo nativo (L-BTC), esto es calculado como [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Para los activos emitidos, esto es calculado como [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. No disponible para activos con emisión ciega u oculta. Si se especifica /decimal, retorna la oferta como decimal de acuerdo a la divisibilidad del activo. De otro modo, lo retorna en la unidad base.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Devuelve detalles acercad e un bloque. Campos disponibles: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , y previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Devuelve el encabezado del bloque codificado en hexadecimal.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Devuelve el hash de el bloque actual en :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Muestra una representación en bruto del bloque en formato binario.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Devuelve el estado de confirmación de un bloque. Campos disponibles: in_best_chain (boolean, falso para bloques huérfanos), next_best (el hash ddel siguiente bloque, solo disponible para bloques en la mejor cadena).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Muestra la altura del último bloque.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Muestra el hash del último bloque.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Devuelve la transacción en índice :index dentro de un bloque específico.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Muestra una lista con todos los txids del bloque.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Devuelve una lista de transacciones en el bloque (hasta 25 transacciones comenzando por start_index ). Las transacciones devueltas aquí no tienen el capo de status , ya que todas las transacciones comparten el mismo bloque y estado de confirmación.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Devuelve los 10 bloques más recientes compenzando por la punta o :start_height si se especifica.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Devuelve la mempool actual como bloques proyectados.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Devuelve nuestras tasas sugeridas actuales para nuevas transacciones
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Muestra estadísticas sobre el backlog del mempool en este momento.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Toma la lista completa de txids en la mempool como una secuencia. El orden de las txids es arbitrario y no concuerda con bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Obtiene una lista de las 10 transacciones a introducir en la mempool. Cada transacción contiene datos de vista simplificada, con los siguientes campos: txid , fee , vsize , y value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Devuelve los ancestros y tas mejores tasas descendientes para una transacción.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Devuelve detalles acerca de una transacción. Campos disponibles: txid , version , locktime , size , weight , fee , vin , vout , y status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Muestra una transacción serializada como hexadecimal.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Devuelve una prueba de inclusión Merkle para la transacción utilizando el formato bitcoind's merkleblock .
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Devuelve una prueba de inclusión Merkle para la transacción utilizando el fromato Electrum's blockchain.transaction.get_merkle
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Devuelve el estado de gasto de un output de transacción. Campos disponibles: spent (boolean), txid (opcional), vin (optional), y status (opcional, el estado de la transacción de gasto).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Muestra el estado del gasto de todas las transacciones salientes.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Muestra una transacción como datos binarios.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Devuelve el estado de confirmación de una transacción. Campos disponibles: confirmed (boolean), block_height (opcional), y block_hash (opcional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Muestra :length de las últimas transacciones de Bisq, empezando desde :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Transmite una transacción en bruto a la red. La transacción debe entregarse como hex en el campo de solicitud. La txid se devolverá en el proceso.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Empujar por defecto: acciona: 'want', data: ['blocks', ...] para expresar lo que quiere empujar. Disponible: blocks , mempool-blocks , live-2h-chart , y stats . Empujar transacciones relaccionadas a la direccion: 'track-address': '3PbJ...bF9B' para recibir todas las nuevas transacciones que contengan la direccion como input o output. Devuelve cualquier formación de transacciones. dirección-transacciones para nuevas transacciones mempool, y bloque-transacciones para nuevas transacciones confirmadas en bloque.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Codigo de ejemplo
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Instalar Paquete
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Respuesta
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Documentación
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Política de Privacidad
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes por segundo:
+
+ Incoming transactions
+ Transacciones entrantes
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
El backend se está sincronizando
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
Sin confirmar
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
Tamaño de la mempool
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- bloques
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- bloque
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Minado
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Bloques
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
Gráficos
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
Vista de TV
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Documentación
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Rango de tasas
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Tasas totales
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Siguiente bloque
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Montón de bloques mempool
@@ -3236,7 +2912,7 @@
Rango
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
Suma
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Desconocido
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Identificado por dirección de pago: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Identificado por etiqueta coinbase: ' '
+
+ Latest blocks
+ Últimos bloques
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Hex de Transacción
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, altura de bloque, hash o dirección
@@ -3326,7 +3344,7 @@
Patrocinador
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
Solicitar factura
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
Cargando transacción...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
¡Donación confirmada!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
¡Gracias!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
Mempool en vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
Filtro
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
Invertir
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
vBytes de transacciones por segundo (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Confirmado
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Visto por primera vez
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Tamaño
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Peso
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Tiempo de bloqueo
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(Monedas recién generadas)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
Testigo
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
script de canje P2SH
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
script de testigo P2WSH
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nSecuencia
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
Script de salida previo
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
Anterior tipo de salida
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Cargar todas
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out a
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- dato
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Esta transacción ahorra % en tasas usando Segwit-Bech32 nativo
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Últimos bloques
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Últimas transacciones
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
Tasa
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
Expandir
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
Colapsar
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
Tarifa mínima
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
Purga
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
Uso de memoria
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
L-BTC en circulación
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Transacciones entrantes
+
+ API service
+ Servicio API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Ajuste de Dificultad
+
+ Endpoint
+ Endpoint
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Restante
+
+ Description
+ Descripción
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Estimada
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Empujar por defecto: acciona: 'want', data: ['blocks', ...] para expresar lo que quiere empujar. Disponible: blocks , mempool-blocks , live-2h-chart , y stats . Empujar transacciones relaccionadas a la direccion: 'track-address': '3PbJ...bF9B' para recibir todas las nuevas transacciones que contengan la direccion como input o output. Devuelve cualquier formación de transacciones. dirección-transacciones para nuevas transacciones mempool, y bloque-transacciones para nuevas transacciones confirmadas en bloque.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Previo
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Período Actual
+
+ Code Example
+ Codigo de ejemplo
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Instalar Paquete
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Respuesta
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf
index 0a0cb965f..5468112f4 100644
--- a/frontend/src/locale/messages.fa.xlf
+++ b/frontend/src/locale/messages.fa.xlf
@@ -5,16 +5,15 @@
Close
بستن
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- صفحه از
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
قبلی
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
بعدی
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
انتخاب ماه
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
انتخاب سال
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
ماه قبل
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
ماه بعد
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
ساعت
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
دقیقه
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
افزایش ساعت
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
کاهش ساعت
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
افزایش دقیقه
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
کاهش دقیقه
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
ثانیه
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
افزایش ثانیه
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
کاهش ثانیه
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
بستن
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- داراییهای ثبتشده
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- جستجوی دارایی
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- پاککردن
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- نام
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- دامنه صادرکننده
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- شناسه دارایی
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- خطا در بارکردن دادههای داراییها.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- داراییها
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
برچسبزمانی
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- نمایش همه »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
شرایط خدمات
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ سیاست حریمخصوصی
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
پیشنهادات خرید
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ تأیید شده
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
کارمزد ثبت دارایی
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- یک کاوشگر ممپول و بلاکچین که برای جامعه بیتکوین توسعه پیدا میکند. با تمرکز بر بازار کارمزدِ تراکنشها و زیستبوم چند لایه. بدون تبلیغات، آلتکوینها و مزاحمت برنامههای ردیاب.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- حامیان سازمانی 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- حامیان جامعه ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
حامی شوید ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
برای حامی شدن به اینجا برو https://mempool.space/sponsor
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- پیادهسازیها
+
+ Enterprise Sponsors 🚀
+ حامیان سازمانی 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ حامیان جامعه ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
متحدین جامعه
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
مشارکت کنندگان
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
اعضای پروژه
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
نگهدارندگان پروژه
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
درباره
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- چندامضایی از
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- لایتنینگ
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- لیکوئید
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- تعداد تراکنشهای این آدرس از محدودیت Electrum server بیشتر است در صورت تمایل، میتوانید این آدرس را در تارنمای رسمی ممپول مشاهده کنید.
+
+ 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
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
نام
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
مبلغ سوزاندهشده
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
مبلغ در گردش
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
خطا در بازکردن دادههای دارایی.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
دارایی:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ داراییها
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ جستجوی دارایی
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ پاککردن
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ دامنه صادرکننده
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ شناسه دارایی
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ خطا در بارکردن دادههای داراییها.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
خاموش
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
داشبورد
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
آمار
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
مستندات
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ اندازه
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ وزن
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
بلاک بعدی
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- برچسبزمانی
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- اندازه
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- وزن
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
کارمزد میانه
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
مجموع کارمزدها
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
یارانه بلاک + کارمزدها
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
استخراجکننده
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
بیت
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
ریشه درخت مرکل
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
سختی شبکه
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
نانس
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
سربرگ بلاک به صورت Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
جزئیات
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
خطا در بازکردن دادههای بلاک.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
بلاک :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ استخراجشده
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ تراکنش
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
کپی شد!
@@ -2164,854 +2503,126 @@
15
-
- API service
- خدمات API
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- نقطه اتصال
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- توضیحات
+
+ Difficulty Adjustment
+ تنظیم سختی بلاکها
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ باقیمانده
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- جزئیات مربوط به تنظیم سختی را برمیگرداند.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- لیست ارزهای در دسترس برای یک ارز پایه را ارائه میدهد.
+
+ Estimate
+ تخمین
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- لیست قیمتهای پیشنهادهای باز برای یک بازار را ارائه میدهد.
+
+ Previous
+ قبلی
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- دادههای بیشینه/کمینه/باز/بسته مربوط به یک بازار را ارائه میدهد. از آن میتوان برای ساختن نمودار شمعی استفاده کرد.
+
+ Current Period
+ دوره فعلی
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- لیست بازارهای در دسترس را ارائه میدهد
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- لیست جزئیات پیشنهادهای باز برای یک بازار را ارائه میدهد.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- نشانگر قیمتی 24 ساعته برای یک یا همه بازارها را ارائه میدهد
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- لیست معاملات کامل شده برای یک بازار را ارائه میدهد.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- دادههای حجم دورهای را بر اساس ارز پایه برای یک یا همه بازارها ارائه میدهد.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- آمارهای مربوط به تمام تراکنشهای Bisq برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- جزئیات تراکنش را برمیگرداند. فیلدهای در دسترس: address , chain_stats و mempool_stats . chain,mempool _stats هر کدام یک شیء با tx_count , funded_txo_count , funded_txo_sum , spent_txo_count و spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- تاریخچه تراکنشهای یک آدرس/چکیدهاسکریپت برمیگرداند که از جدید به قدیم مرتب شدهاند. تا 50 تراکنش از ممپول به اضافه 25 تراکنش تایید شده. میتوانید درخواست تراکنش تایید شده بیشتر را با استفاده از :last_seen_txid انجام دهید (پایین را ببینید).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- دریافت تاریخچه تراکنشهای تایید شده برای یک آدرس/چکیدهاسکریپت، مرتب شده از جدید به قدیم. در صفحه 25 تراکنش برمیگرداند. دریافت تراکنشهای بیشتر با تعیین آخرین شناسه تراکنش دیده شده در پرسجو قبلی میسر خواهد شد.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- دریافت تاریخچه تراکنشهای تایید نشده برای یک آدرس/چکیدهاسکریپت. تا 50 تراکنش (بدون صفحه بندی).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- دریافت لیست خروجی تراکنشهای مرتبط با آدرس/چکیدهاسکریپت. فیلدهای در دسترس: txid , vout , value و status (به همراه وضعیت تراکنش پرداختکننده). همچنین یک فیلد valuecommitment وجود دارد که ممکن است به جای value قرار بگیرد، به اضافه این فیلدها: asset / assetcommitment , nonce / noncecommitment , surjection_proof و range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- اطلاعاتی درباره یک دارایی Liquid برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- تراکنشهای مرتبط با دارایی Liquid مشخص شده را برمیگرداند. برای داراییهای اصیل شبکه، لیستی از peg-in ها، peg-outها و تراکنشهای سوزاندن برمیگرداند. برای داراییهایی که کاربر آن را صادر کرده است، لیستی از صدورها، باز صدورها و تراکنشهای سوزاندن برمیگرداند. شامل تراکنشهای معمولی برای انتقال این دارایی نمیشود.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- مقدار کل دارایی مشخص شده را برمیگرداند. برای داراییهای اصیل (L-BTC)، به این صورت محاسبه میشود
-[chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount
-برای داراییهای صادر شده محاسبه آن این صورت است
- [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount.
-برای داراییهای صدور کور داشتهاند در دسترس نیست. اگر /decimal مشخص بشود، مقدار کل را به صورت decimal با توجه به تقسیمپذیری دارایی برمیگرداند. در غیر این صورت با واحدهای پایه برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- جزئیات بلاک را برمیگرداند. فیلدهای در دسترس: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , و previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- سربرگ بلاک کد شده به صورت hex را برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- چکیده بلاک موجود در طول :height را برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- نمایش خام بلاک در قالب باینری را برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- وضعیت تایید یک بلاک را برمیگرداند. فیلدهای در دسترس: in_best_chain (از نوع boolean و مقدارش برای بلاکهای یتیم false است)، next_best (چکیده بلاک بعدی، فقط برای بلاکهای بهترین زنجیره در دسترس است).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- طول آخرین بلاک را برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- چکیده آخرین بلاک را برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- تراکنش موجود در اندیس :index بلاک مشخص شده را برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- لیست شناسه تمام تراکنشهای بلاک را برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- لیست تراکنشهای بلاک را برمیگرداند (25 تراکنش ابتدایی که از start_index شروع میشود). تراکنشهای ارسالی شامل فیلد status نیستند، چون مقدار آن برای همه تراکنشهای یک بلاک یکسان است.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- لیست 10 بلاک آخر را از آخرین بلاک و یا در صورت تنظیم کردن فیلد مربوطه از :start_height برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- ممپول فعلی را در قالب بلاکهای احتمالی برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- کارمزدهای پیشنهادی ما را برای تراکنشهای جدید برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- آمارهای ممپول فعلی را برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- دریافت لیست کامل شناسه تراکنشهای ممپول به عنوان آرایه. ترتیب شناسهها دلبخواه است و منطبق با ترتیب bitcoind نیست.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- دریافت لیست 10 تراکنش اخیر که وارد ممپول شدهاند. هر شئ ترامنش شامل یک سری داده خلاصه است که شامل این فیلدها میشود: txid , fee , vsize و value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- کارمزد بهترین نوادهها و والد یک تراکنش را برمیگرداند
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- جزئیات تراکنش را برمیگرداند. فیلدهای در دسترس: txid , version , locktime , size , weight , fee , vin , vout و status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- یک تراکنش را در قالب hex برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- یک «اثبات وجود در مرکل» برای تراکنش برمیگرداند که در قالب bitcoind's merkleblock است.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- یک «اثبات وجود در مرکل» برای تراکنش برمیگرداند که در قالب Electrum's blockchain.transaction.get_merkle است.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- وضعیت خرجشدن یک تراکنش را برمیگرداند. فیلدهای در دسترس: spent (boolean), txid (optional), vin (optional) و status (optional, وضعیت تراکنش خرج شونده).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- وضعیت خرج شدن همه خروجی تراکنشها را برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- یک تراکنش را در قالب دادههای باینری برمیگرداند.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- وضعیت تائید یک تراکنش را برمیگرداند. فیلدهای در دسترس: confirmed (boolean), block_height (optional) و block_hash (optional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- مقدار :length آخرین تراکنش Bisq را برمیگرداند، شروع از :index
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- یک تراکنش خام را در شبکه منتشر میکند. تراکنش باید به صورت hex در بدنه درخواست وارد شود. در صورت موفقیت، مقدار txid برگردانده میشود.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- دستور پیشفرض: action: 'want', data: ['blocks', ...] که نشان میدهد چه چیزی باید ارسال شود. گزینههای در دسترس: blocks , mempool-blocks , live-2h-chart و stats . دستورهای مربوط به آدرس: 'track-address': '3PbJ...bF9B' جهت دریافت تمام تراکنشهای جدیدی که خروجی یا ورودیهای آنها شامل این آدرس میشود. آرایهای از تراکنشها برمیگرداند. address-transactions برای تراکنشهای جدید ممپول و block-transactions برای تراکنشهای بلاک تایید شدهی جدید.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- رابط برنامهنویسی نرمافزار (API)
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- نمونه کد
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- بسته نصب
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- پاسخ دریافتی
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- مستندات
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- سیاست حریمخصوصی
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3052,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- تراکنش vByte بر ثانیه:
+
+ Incoming transactions
+ تراکنشهای منتشرشده
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
زیرساخت در حال همگامسازی است
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3079,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3093,11 +2708,11 @@
تأیید نشده
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3107,60 +2722,109 @@
اندازه ممپول
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- بلاک
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- بلاک
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- استخراجشده
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- بلاکها
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3168,31 +2832,56 @@
گرافها
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
نمایش تلویزیونی
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ مستندات
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
بازهی کارمزد
@@ -3202,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- مجموع کارمزدها
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- بلاک بعدی
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
پشتهای از بلاک ممپول
@@ -3240,7 +2912,7 @@
بازه
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3248,33 +2920,307 @@
مجموع
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- ناشناخته
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- شناسایی شده با آدرس پرداختی: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- شناسایی شده با برچسب coinbase تراکنش: ' '
+
+ Latest blocks
+ آخرین بلاکها
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3289,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- تراکنش به صورت Hex
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3307,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
شناسه تراکنش، آدرس، طول یا چکیده بلاک
@@ -3330,7 +3344,7 @@
حامی
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3343,7 +3357,7 @@
درخواست فاکتور
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3352,7 +3366,7 @@
منتظر تراکنش...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3361,7 +3375,7 @@
اهدا هدیه تایید شد!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3370,7 +3384,7 @@
ممنون!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3379,7 +3393,7 @@
وضعیت ممپول به vByte (ساتوشی بر vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3388,7 +3402,7 @@
پالایش
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3397,7 +3411,7 @@
معکوس
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3406,7 +3420,7 @@
تراکنش vByte بر ثانیه (vB بر ثانیه)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3625,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- تأیید شده
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
اولین زمان دیدهشدن
@@ -3718,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- اندازه
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- وزن
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
قفلزمانی
@@ -3775,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
ساتوشی
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3800,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3809,7 +3797,7 @@
(سکههای تازه تولید شده)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3818,7 +3806,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3827,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3837,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3847,7 +3835,7 @@
شاهد
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3856,16 +3844,24 @@
اسکریپت نقد کردن P2SH
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
اسکریپت شاهد P2WSH
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3874,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3883,7 +3879,7 @@
اسکریپت خروجی قبلی
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3892,29 +3888,16 @@
نوع خروجی قبلی
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- بازکردن همه
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out به
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3923,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3933,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- ساتوشی
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
این تراکنش با استفاده کردن از SegWit-Bech32 حدودا درصد در کارمزد صرفهجویی کرده است
@@ -4098,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- آخرین بلاکها
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- تراکنش
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
آخرین تراکنشها
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4138,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4147,7 +4089,7 @@
کارمزد
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4156,7 +4098,7 @@
بستن
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4165,7 +4107,7 @@
بازکردن
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4174,7 +4116,7 @@
حداقل کارمزد
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4184,7 +4126,7 @@
آستانه حذف
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4194,7 +4136,7 @@
حافظه مصرفشده
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4204,75 +4146,95 @@
مقدار L-BTC در گردش
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- تراکنشهای منتشرشده
+
+ API service
+ خدمات API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- تنظیم سختی بلاکها
+
+ Endpoint
+ نقطه اتصال
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- باقیمانده
+
+ Description
+ توضیحات
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- تخمین
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ دستور پیشفرض: action: 'want', data: ['blocks', ...] که نشان میدهد چه چیزی باید ارسال شود. گزینههای در دسترس: blocks , mempool-blocks , live-2h-chart و stats . دستورهای مربوط به آدرس: 'track-address': '3PbJ...bF9B' جهت دریافت تمام تراکنشهای جدیدی که خروجی یا ورودیهای آنها شامل این آدرس میشود. آرایهای از تراکنشها برمیگرداند. address-transactions برای تراکنشهای جدید ممپول و block-transactions برای تراکنشهای بلاک تایید شدهی جدید.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- قبلی
+
+ API
+ رابط برنامهنویسی نرمافزار (API)
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- دوره فعلی
+
+ Code Example
+ نمونه کد
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ بسته نصب
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ پاسخ دریافتی
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.fi.xlf b/frontend/src/locale/messages.fi.xlf
index fe73c4a0e..e75fef47c 100644
--- a/frontend/src/locale/messages.fi.xlf
+++ b/frontend/src/locale/messages.fi.xlf
@@ -5,16 +5,15 @@
Close
Sulje
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Sivu /
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Edellinen
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Seuraava
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Valitse kuukausi
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Valitse vuosi
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Edellinen kuukausi
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Seuraava kuukausi
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Tunnit
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minuutit
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Tuntien lisäys
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Tuntien vähennys
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Minuuttien lisäys
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Minuuttien vähennys
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Sekuntit
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Sekuntien lisäys
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Sekuntien vähennys
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Sulje
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Rekisteröidyt omaisuuserät
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Etsi omaisuuserä
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Tyhjennä
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Nimi
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Tunnus
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Liikkeeseenlaskijan verkkotunnus
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- Omaisuuserä tunnus
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Omaisuuserientietoja ladattaessa tapahtui virhe.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Omaisuuserät
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Aikaleima
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Näytä kaikki »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Käyttöehdot
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Tietosuojakäytäntö
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Ostotarjoukset
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Vahvistettu
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Omaisuuserien luettelointimaksu
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Rakennetaan mempool- ja lohkoketjuselain Bitcoin-yhteisölle, jossa keskitytään transaktiokulumarkkinoihin ja monikerroksiseen ekosysteemiin ilman mainontaa, altcoineja tai kolmannen osapuolen seurantalaitteita.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Yritys-sponsorit 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Yhteisön sponsorit ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Ryhdy sponsoriksi ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Siirry osoitteeseen https://mempool.space/sponsor sponsoroidaksesi
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Yhteisön integraatiot
+
+ Enterprise Sponsors 🚀
+ Yritys-sponsorit 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Yhteisön sponsorit ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Yhteisöliittoumat
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Projektin avustajat
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Projektin jäsenet
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Projektin ylläpitäjät
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
Tietoja
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig /
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Tämän osoitteen transaktioiden määrä ylittää Electrum-palvelimen rajan Harkitse tämän osoitteen tarkastelua virallisella Mempoolin verkkosivustolla:
+
+ 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
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Nimi
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Kiinnitetty
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Irrotettu
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Poltettu määrä
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Liikkuva määrä
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Omaisuuserätietoja ladattaessa tapahtui virhe.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Omaisuuserä:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Omaisuuserät
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Etsi omaisuuserä
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Tyhjennä
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Tunnus
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Liikkeeseenlaskijan verkkotunnus
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ Omaisuuserä tunnus
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Omaisuuserientietoja ladattaessa tapahtui virhe.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Offline-tilassa
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Kojelauta
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Tilastot
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Dokumentit
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Koko
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Paino
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Seuraava lohko
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Aikaleima
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Koko
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Paino
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Keskimääräinen siirtokulu
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Siirtokulut yhteensä
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Palkkio + siirtokulut:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Louhija
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bitit
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merkle-juuri
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Vaikeus
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonssi
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Lohkon järjestysnumero heksa
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Yksityiskohdat
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Virhe lohkotietoja ladattaessa.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Lohko :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Louhittu
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ Siirtoa
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Kopioitu!
@@ -2164,850 +2503,126 @@
15
-
- API service
- API-palvelu
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Päätepiste
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Kuvaus
+
+ Difficulty Adjustment
+ Vaikeudensäätö
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Jäljellä
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Palauttaa yksityiskohtaiset tiedot vaikeudensäädöstä.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Luettelo tietylle perusvaluutalle käytettävissä olevista valuutoista.
+
+ Estimate
+ Arvio
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Tarjoaa luettelon yksittäisten markkinoiden avoimista tarjoushinnoista.
+
+ Previous
+ Edellinen
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Tarjoaa hi/low/open/close -tiedot tietyille markkinoille. Tätä voidaan käyttää candlestick-kaavion luomiseen.
+
+ Current Period
+ Nykyinen jakso
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Tarjoaa luettelon saatavilla olevista markkinoista.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Tarjoaa luettelon avoimen tarjouksen yksityiskohdista yksittäisillä markkinoilla.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Tarjoaa 24 tunnin hintatickerin yksittäisille markkinoille tai kaikille markkinoille.
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Tarjoaa luettelon yksittäisen markkinan toteutuneista kaupoista.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Tarjoaa säännöllisiä volyymitietoja perusvaluutan muodossa yhdeltä tai kaikilta markkinoilta.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Palauttaa kaikkien Bisq-siirtotapahtumien tilastot.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Palauttaa osoitteen tiedot. Käytettävissä olevat kentät: address , chain_stats ja mempool_stats . chain,mempool_stats sisältävät kukin objektin, jossa on tx_count , funded_txo_count , funded_txo_sum , spent_txo_count ja spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Hae siirtotapahtumahistoria määritellyn osoitteen/scripthashin osalta lajiteltuna uusin ensin. Palauttaa enintään 50 mempool-tapahtumaa sekä 25 ensimmäistä vahvistettua tapahtumaa. Voit pyytää lisää vahvistettuja tapahtumia käyttämällä :last_seen_txid (katso alla).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Hanki vahvistettu siirtotapahtumahistoria määritetylle osoitteelle/skriptitiivisteelle lajiteltuna ensin uusimmalla. Palauttaa 25 siirtotapahtumaa sivua kohden. Lisää voidaan pyytää määrittämällä viimeinen siirtotunniste, jonka edellinen kysely näki.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Hanki vahvistamaton siirtotapahtumahistoria määritetylle osoitteelle/skriptitiivisteelle. Palauttaa jopa 50 siirtotapahtumaa (ei hakua).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Hae luettelo osoitteeseen/scripthashiin liittyvistä käyttämättömistä siirtotapahtumatulosteista. Käytettävissä olevat kentät: txid , vout , value ja status (rahoittavan tx:n status). Lisäksi on valuecommitment -kenttä, joka voi esiintyä value -kentän sijasta, sekä seuraavat lisäkentät: asset / assetcommitment , nonce / noncecommitment , surjection_proof ja range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Palauttaa Liquid omaisuuserän tiedot.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Palauttaa määritettyyn Liquid omaisuuserään liittyvät siirtotapahtumat. Palauttaa verkon alkuperäisen omaisuuserän, luettelon kiinnittämisen, irrottamisen ja polttamisen siirtotapahtumista. Palauttaa käyttäjän liikkeeseen laskemien omaisuuserien luettelon liikkeeseenlaskuista, uudelleen liikkeeseen laskemisesta ja poltettavista siirtotapahtumista. Ei sisällä tavallisia siirtotapahtumia, joilla tämä omaisuuserä siirretään.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Hanki määritetyn omaisuuserän nykyinen kokonaismäärä. Natiiville omaisuuserälle (L-BTC) tämä lasketaan muodossa [chain,mempool] _stats.peg_in_amount - [chain,mempool] _stats.peg_out_amount - [chain, mempool] _stats.burned_amount. Liikkeeseen laskettujen omaisuuserien kohdalla tämä lasketaan muodossa [chain,mempool] _stats.issued_amount - [chain,mempool] _stats.burned_amount. Ei saatavilla omaisuuserille, joiden liikkeeseenlaskut ovat piilotettu. Jos /decimal on määritetty, palauttaa tarjonnan desimaalina omaisuuserän jaettavuuden mukaan. Muuten palautetaan perusyksikköinä.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Palauttaa lohkon tiedot. Käytettävissä olevat kentät: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof ja previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Palauttaa heksakoodatun lohkon järjestysnumeron.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Palauttaa sen lohkon tiivisteen, joka on tällä hetkellä :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Palauttaa raakalohkon esityksen binäärisenä.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Palauttaa lohkon vahvistustilan. Käytettävissä olevat kentät: in_best_chain (boolean, false orvoille lohkoille), next_best (seuraavan lohkon tiiviste, käytettävissä vain parhaan ketjun lohkoille).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Palauttaa viimeisen lohkon järjestysnumeron.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Palauttaa viimeisen lohkon tiivisteen.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Palauttaa siirtotapahtuman indeksillä :index määritetyn lohkon sisällä.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Palauttaa luettelon kaikista lohkossa olevista siirtotunnisteista.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Palauttaa luettelon lohkon siirtotapahtumista (enintään 25 tapahtumaa alkaen start_indexistä ). Tässä palautetuissa tapahtumissa ei ole tila kenttää, koska kaikilla tapahtumilla on sama lohko- ja vahvistustila.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Palauttaa 10 uusinta lohkoa, jotka alkavat kärjestä tai :start_height -korkeudesta, jos se on määritetty.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Palauttaa nykyisen mempoolin projisoituina lohkoina.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Palauttaa tällä hetkellä ehdotetut maksut uusille siirtotapahtumille.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Palauttaa nykyisen mempool takalokin tilastot.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Hae koko luettelo mempoolin siirtotunniste-tietueista array-muodossa. Siirtotunnisteiden järjestys on mielivaltainen eikä vastaa bitcoindia.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Luettelo 10 viimeisimmästä mempooliin tulleesta siirtotapahtumasta. Kukin transaktio-objekti sisältää yksinkertaistettuja yleistietoja, joissa on seuraavat kentät: txid , fee , vsize ja value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Palauttaa esisiirtokulun ja jälkisiirtokulun siirtotapahtumalle.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Palauttaa siirtotapahtuman tiedot. Käytettävissä olevat kentät: txid , version , locktime , size , weight , fee , vin , vout ja status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Palauttaa siirtotapahtuman, joka on esitetty heksoina.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Palauttaa merkle-inkluusiotodistuksen siirtotapahtumalle bitcoindin merkleblock -formaattia käyttäen.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Palauttaa merkle-inkluusiotodistuksen siirtotapahtumalle käyttäen Electrumin blockchain.transaction.get_merkle -muotoa.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Palauttaa siirtotapahtumatulosteen kulutustilanteen. Käytettävissä olevat kentät: spent (boolean), txid (valinnainen), vin (valinnainen) ja status (valinnainen, käytettävän tx:n tila).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Palauttaa kaikkien siirtotapahtuma tulosteiden kulutustilan.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Palauttaa siirtotapahtuman binääritietona.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Palauttaa siirtotapahtuman vahvistuksen tilan. Käytettävissä olevat kentät: confirmed (boolean), block_height (valinnainen) ja block_hash (valinnainen).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Palauttaa viimeisimpien Bisq-siirtotapahtumien :length alkaen :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Lähetetään raaka siirtotapahtuma verkkoon. Tapahtuma on annettava hex-muodossa pyynnön rungossa. Txid palautetaan onnistumisen yhteydessä.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Oletus työntö: action: 'want', data: ['blocks', ...] ilmaisemaan, mitä haluat työnnettävän. Käytettävissä: blocks , mempool-blocks , live-2h-chart ja stats . Työnnä osoitteeseen liittyvät tapahtumat: 'track-address': '3PbJ...bF9B' vastaanottaa kaikki uudet transaktiot, jotka sisältävät kyseisen osoitteen syötteenä tai tulosteena. Palauttaa transaktioiden joukon. address-transactions uusille mempool-transaktioille ja block-transactions uusille lohkon vahvistetuille transaktioille.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Koodiesimerkki
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Asenna paketti
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Vastaus
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Dokumentaatio
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Tietosuojakäytäntö
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vByte:ä per sekuntti:
+
+ Incoming transactions
+ Saapuvat siirtotapahtumat
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Taustaosaa synkronoidaan...
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
Vahvistamatta
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
Mempoolin koko
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- lohkoa
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- lohko
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Louhittu
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Lohkot
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
Kaaviot
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV näkymä
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Dokumentaatio
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Siirtokulu väli
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Siirtokulut yhteensä
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Seuraava lohko
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Mempool-lohkojen pino
@@ -3236,7 +2912,7 @@
Alue
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
Summa
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Tuntematon
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Tunnistetaan maksun osoitteen perusteella: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Tunnistettu coinbase-tunnisteella: ' '
+
+ Latest blocks
+ Viimeisimmät lohkot
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Transaktion heksa
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
Siirtotunniste, tiiviste, osoite tai järjestysnumero
@@ -3326,7 +3344,7 @@
Sponsoroi
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
Pyydä lasku
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
Odotetaan siirtotapahtumaa...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
Lahjoitus vahvistettu!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
Kiitos!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
Mempool vByte:inä (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
Suodatin
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
Käänteinen
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
Siirtotapahtuma vByte:ä sekunnissa (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Vahvistettu
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Ensimmäiseksi nähty
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Koko
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Paino
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Lukitusaika
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
Kolikonluonti
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(Äskettäin luodut kolikot)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
Kiinnitä
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
Todistaja
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
P2SH lunastusskripti
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH todistajaskripti
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
Edellinen tulosteskripti
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
Edellinen tulostetyyppi
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Lataa kaikki
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Irrotetaan
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Tämä transaktio säästi % siirtokuluissa käyttämällä natiivia SegWit-Bech32:ta
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Viimeisimmät lohkot
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- Siirtoa
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Viimeisimmät siirtotapahtumat
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
Siirtokulu
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
Laajenna
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
Paina kokoon
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
Vähimmäiskulu
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
Tyhjennys
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
Muistin käyttö
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
Käytössä olevat L-BTC
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Saapuvat siirtotapahtumat
+
+ API service
+ API-palvelu
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Vaikeudensäätö
+
+ Endpoint
+ Päätepiste
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Jäljellä
+
+ Description
+ Kuvaus
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Arvio
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Oletus työntö: action: 'want', data: ['blocks', ...] ilmaisemaan, mitä haluat työnnettävän. Käytettävissä: blocks , mempool-blocks , live-2h-chart ja stats . Työnnä osoitteeseen liittyvät tapahtumat: 'track-address': '3PbJ...bF9B' vastaanottaa kaikki uudet transaktiot, jotka sisältävät kyseisen osoitteen syötteenä tai tulosteena. Palauttaa transaktioiden joukon. address-transactions uusille mempool-transaktioille ja block-transactions uusille lohkon vahvistetuille transaktioille.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Edellinen
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Nykyinen jakso
+
+ Code Example
+ Koodiesimerkki
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Asenna paketti
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Vastaus
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf
index 85582d997..0236ad230 100644
--- a/frontend/src/locale/messages.fr.xlf
+++ b/frontend/src/locale/messages.fr.xlf
@@ -5,16 +5,15 @@
Close
Fermer
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Diapositive de
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Précédent
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Suivant
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Sélectionner le mois
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Sélectionner l'année
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Mois précédent
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Mois suivant
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Heures
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minutes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Incrémenter les heures
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Décrémenter les heures
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Incrémenter les minutes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Décrémenter les minutes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Secondes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Incrémenter les secondes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Décrémenter les secondes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Fermer
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Actifs enregistrés
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Rechercher un actif
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Supprimer
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Nom
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Domaine de l'émetteur
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- Identifiant de l'actif
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Erreur lors du chargement des données des actifs.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Actifs
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Horodatage
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,9 @@
bisq-dashboard.market-price-title
-
- View all »
- Tout voir >>
+
+ View more »
+ Voir plus »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +741,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Conditions d'utilisation
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Politique de confidentialité
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Offres d'achat
@@ -943,6 +904,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +974,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1008,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1030,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1042,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1084,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1106,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1205,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1229,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Confirmé
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Frais de référencement d'actif
@@ -1412,38 +1403,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Construire un exploreur du mempool et de la blockchain pour la communauté Bitcoin, en se concentrant sur le marché des frais de transactions et un écosystème à plusieurs couches, sans aucune publicité, sans altcoins, et sans cookies de pistage tiers.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Entreprises sponsors 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Sponsors de la communauté ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Devenir sponsor ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1424,71 @@
Accédez à https://mempool.space/sponsor pour parrainer
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Intégrations communautaires
+
+ Enterprise Sponsors 🚀
+ Entreprises sponsors 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Sponsors de la communauté ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Alliances communautaires
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Contributeurs au projet
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1497,7 @@
Membres du projet
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1506,7 @@
Mainteneurs de projet
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1515,28 @@
A propos
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig de
+
+ Multisig of
+ Multisig de
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1574,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Le nombre de transactions sur cette adresse dépasse la limite du serveur Electrum Vous pouvez vérifier cette adresse sur le site officiel de 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1593,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1629,22 @@
Liquid Asset page title
asset
-
+
Name
Nom
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1681,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1691,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1701,7 @@
Montant brulé
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1711,11 @@
Montant en circulation
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1752,7 @@
Erreur dans le chargement des données de l'asset
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1761,143 @@
Actif :
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+ Groupe de actifs
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Actifs
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+ Tous
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Rechercher un actif
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Supprimer
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Domaine de l'émetteur
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ Identifiant de l'actif
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Erreur lors du chargement des données des actifs.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Hors-ligne
@@ -1777,7 +1907,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1924,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1941,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1954,15 @@
Tableau de bord
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1971,7 @@
Statistiques
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1980,186 @@
Docs
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+ Frais
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ Reward
+ Récompense
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 15,17
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Taille
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Poids
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Bloc suivant
@@ -1873,6 +2171,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2186,6 @@
Previous Block
-
- Timestamp
- Horodatage
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Taille
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Poids
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Frais médian
@@ -1957,7 +2212,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2240,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2260,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2303,15 @@
Frais totaux
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2321,11 @@
Subvention + frais:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2335,7 @@
Mineur
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2344,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2353,7 @@
racine de Merkle
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2362,27 @@
Difficulté
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2391,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2400,7 @@
Hex d'en-tête de bloc
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2409,7 @@
Détails
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2423,7 @@
Erreur lors du chargement des données du bloc
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2432,75 @@
Bloc :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Miné
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Copié!
@@ -2164,850 +2509,128 @@
15
-
- API service
- Service API
+
+ Adjusted
+ Ajustée
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Point de terminaison
+
+ Change
+ Changement
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Description
+
+ Difficulty Adjustment
+ Ajustement de la difficulté
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Restant
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Renvoie des détails sur l'ajustement de la difficulté.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Liste les devises disponibles en fonction d'une devise de base.
+
+ Estimate
+ Estimation
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Donne le prix des offres en cours pour un seul marché.
+
+ Previous
+ Précédent
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Liste les prix maximum/minimum/d'ouverture/de fermeture d'un marché. Ces données peuvent être utilisées pour générer un graphique en chandelier.
+
+ Current Period
+ Période actuelle
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Liste les marchés disponibles.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Donne le détails des offres en cours pour un seul marché.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Donne le prix d'un symbole sur 24 heures pour un seul ou tous les marchés.
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Donne la liste des transactions complétées pour un seul marché.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Donne les données de volume périodique en devise de base pour un seul ou tous les marchés
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Renvoie des statistiques sur toutes les transactions Bisq.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Renvoie des détails sur une adresse. Champs disponibles: address , chain_stats , et mempool_stats . chain, mempool _stats chacun contient un objet avec tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , et spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Obtenez l'historique des transactions pour l'adresse/scripthash spécifié, trié par le plus récent en premier. Renvoie jusqu'à 50 transactions mempool plus les 25 premières transactions confirmées. Vous pouvez demander pour plus de transactions confirmées en utilisant :last_seen_txid (voir ci-dessous).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Obtenez l'historique des transactions confirmé pour l'adresse/scripthash spécifié, trié par le plus récent en premier. Renvoie 25 transactions par page. D’additionnel peut être demandé en spécifiant le dernier txid vu par la requête précédente.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Obtenez l'historique des transactions non confirmées pour l'adresse/scripthash spécifié. Renvoie jusqu'à 50 transactions (sans pagination).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Obtenez la liste des sorties de transaction non dépensées associées à l'adresse/scripthash. Champs disponibles: txid , vout , value et status (avec l'état de la tx financières). Il y a aussi le champ valuecommitment qui peut apparaître à la place de value , ainsi que les champs supplémentaires suivants: asset / assetcommitment , nonce / noncecommitment , surjection_proof , et range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Renvoie des informations sur un actif Liquide.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Renvoie les transactions associées à l'actif Liquide spécifié. Pour l'actif natif du réseau, renvoie une liste des transactions peg in, peg out et brûler. Pour les actifs émis par l'utilisateur, renvoie une liste des transactions d'émission, de réémission et brûler. N'inclut pas les transactions régulières transférant cet actif.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Obtenez l'approvisionnement total actuel de l'actif spécifié. Pour l'actif natif (L-BTC), ceci est calculé comme suit:[chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Pour les actifs émis, cela est calculé comme suit: [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Non disponible pour les actifs avec des émissions aveugle. Si /decimal est spécifié, renvoie l'approvisionnement sous forme de décimale en fonction de la divisibilité de l'actif. Sinon, retourné en unités de base.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Renvoie des détails d'un bloc. Champs disponibles: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , et previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Renvoie l'en-tête de bloc codé en hexadécimal.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Renvoie le hachage du bloc actuellement à :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Renvoie la représentation brute du bloc en binaire.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Renvoie l'état de confirmation d'un bloc. Champs disponibles : in_best_chain (booléen, false pour les blocs orphelins), next_best (le hachage du bloc suivant, disponible uniquement pour les blocs de la meilleure chaîne).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Retourne la hauteur du dernier bloc
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Retourne le hash du dernier bloc
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Renvoie la transaction à l'index :index dans le bloc spécifié.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Renvoie une liste de tous les txids du bloc.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Renvoie une liste des transactions dans le bloc (jusqu'à 25 transactions commençant à start_index ). Les transactions retournées ici n'ont pas le champ status car toutes les transactions partagent le même statut de blocage et de confirmation.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Renvoie les 10 blocs les plus récents en commençant par la pointe ou à :start_height si spécifié.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Renvoie le mempool actuel sous forme de blocs projetés.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Renvoie nos frais actuellement suggérés pour les nouvelles transactions.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Retourne les statistiques actuelles du mempool.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Obtenez la liste complète des txids dans le mempool sous forme de tableau. L'ordre des txids est arbitraire et ne correspond pas à bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Donne une liste des 10 dernières transactions ayant fait leur entrée dans la mempool. Chaque objet "transaction" contient une vue d'ensemble simplifiée des données, avec les champs suivants: txid , fee , vsize et value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Renvoie les ancêtres et les meilleurs frais de descendants pour une transaction.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Renvoie des détails sur une transaction. Champs disponibles: txid , version , locktime , size , weight , fee , vin , vout et status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Renvoie une transaction sérialisée en hexadécimal.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Renvoie une preuve d'inclusion merkle pour la transaction en utilisant le format merkleblock de bitcoind .
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Renvoie une preuve d'inclusion merkle pour la transaction en utilisant le format blockchain.transaction.get_merkle d'Electrum
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Renvoie le statut de dépense d'une sortie de transaction. Champs disponibles : spent (booléen), txid (optionnel), vin (optionnel) et status (facultatif, le statut de la dépense tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Renvoie l'état des dépenses de toutes les sorties de transaction.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Renvoie une transaction sous forme de données binaires.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Renvoie le statut de confirmation d'une transaction. Champs disponibles: confirmed (booléen), block_height (optionnel) et block_hash (optionnel).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Renvoie :length des dernières transactions Bisq, à partir de :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Diffuser une transaction brute sur le réseau. La transaction doit être fournie sous forme hexadécimale dans le corps de la requête. Le txid sera renvoyé en cas de succès.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Pousser par défaut : action: 'want', data: ['blocks', ...] pour exprimer ce que vous voulez pousser. Disponible: blocks , mempool-blocks , live-2h-chart , et stats . Pousse les transactions liées à l'adresse : 'track-address': '3PbJ...bF9B' pour recevoir toutes les nouvelles transactions contenant cette adresse en entrée ou en sortie. Renvoie un tableau de transactions. address-transactions pour les nouvelles transactions mempool, et block-transactions pour les nouvelles transactions confirmées en bloc.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Exemple de code
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Paquet d'installation
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Réponse
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Documentation
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Politique de confidentialité
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2671,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes par seconde:
+
+ Incoming transactions
+ Transactions entrantes
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Synchronisation du backend
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2702,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2716,11 @@
Non confirmées
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2730,111 @@
Taille du mempool
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- blocs
+
+ Mining
+ Minage
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- bloc
+
+ Pools Ranking
+ Classement des pools
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Miné
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Blocs
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2842,56 @@
Graphiques
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
Vue TV
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Documentation
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
L'envergure des frais
@@ -3198,23 +2901,6 @@
mempool-block.fee-span
-
- Total fees
- Frais totaux
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Prochain bloc
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Pile de blocs mempool
@@ -3236,7 +2922,7 @@
Intervalle
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2930,320 @@
Total
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Inconnue
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Identifié par l’adresse de paiement en sortie: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Identifié par le tag de la transaction coinbase : ' '
+
+ Latest blocks
+ Derniers blocs
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+ Ajustements
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+ Rang
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+ Bloc vides
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+ Tous les mineurs
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+ Pool de minage
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+ Voir tout
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+ Cacher
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+ Estimé
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+ Reporté
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+ Chance
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+ Blocs miné
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3258,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Hex de transaction
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3275,77 @@
transaction.hex
+
+ Miners Reward
+ Récompense de minage
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward Per Tx
+ Récompense par 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
Identifiant de transaction, hauteur de bloc, hash ou addresse
@@ -3326,7 +3369,7 @@
Parrainer
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3382,7 @@
Demander une facture
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3391,7 @@
En attente de la transaction...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3400,7 @@
Don confirmé!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3409,7 @@
Merci!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3418,7 @@
Mempool par vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3427,7 @@
Filtrer
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3436,7 @@
Inverser
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3445,7 @@
Transaction vBytes par seconde (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3664,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Confirmé
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Vu pour la première fois
@@ -3714,26 +3747,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Taille
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Poids
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Temps de verrouillage
@@ -3771,15 +3784,19 @@
Transaction fee
transaction.fee
-
+
sat
- sat
+ Sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3813,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3822,7 @@
(Nouveaux bitcoins générés)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3831,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3840,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3850,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3860,7 @@
Témoin
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3869,24 @@
Script de rachat P2SH
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
Script témoin PW2SH
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3895,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3904,7 @@
Script de sortie précédent
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3913,16 @@
Script de sortie précédent
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Charger tout
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out vers
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3931,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3941,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- Donnée
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- Sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Cette transaction a économisé % sur les frais en utilisant SegWit-Bech32 natif
@@ -4094,38 +4087,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Derniers blocs
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Dernières transactions
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4105,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4114,7 @@
Frais
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4123,7 @@
Etendre
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4132,7 @@
Ecraser
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4141,7 @@
Frais minimums
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4151,7 @@
Purgées
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4161,7 @@
Mémoire utilisée
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4171,95 @@
L-BTC en circulation
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Transactions entrantes
+
+ API service
+ Service API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Ajustement de la difficulté
+
+ Endpoint
+ Point de terminaison
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Restant
+
+ Description
+ Description
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Estimation
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Pousser par défaut : action: 'want', data: ['blocks', ...] pour exprimer ce que vous voulez pousser. Disponible: blocks , mempool-blocks , live-2h-chart , et stats . Pousse les transactions liées à l'adresse : 'track-address': '3PbJ...bF9B' pour recevoir toutes les nouvelles transactions contenant cette adresse en entrée ou en sortie. Renvoie un tableau de transactions. address-transactions pour les nouvelles transactions mempool, et block-transactions pour les nouvelles transactions confirmées en bloc.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Précédent
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Période actuelle
+
+ Code Example
+ Exemple de code
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Paquet d'installation
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Réponse
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.he.xlf b/frontend/src/locale/messages.he.xlf
index 0e91f271a..e5c9ea00c 100644
--- a/frontend/src/locale/messages.he.xlf
+++ b/frontend/src/locale/messages.he.xlf
@@ -5,16 +5,15 @@
Close
סגירה
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- שקף מ
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
הקודם
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
הבא
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
בחירת חודש
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
בחירת שנה
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
החודש הקודם
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
החודש הבא
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
שעות
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
דקות
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
תוספת שעות
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
הפחתת שעות
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
תוספת דקות
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
הפחתת דקות
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
שניות
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
תוספת שניות
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
הפחתת שניות
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
סגירה
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- נכסים רשומים
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- חיפוש נכס
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- ניקוי
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- שם
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- פסנוע
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- דומיין מנפיק
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- מזהה נכס
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- שגיאה בטעינת נתוני נכסים.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- נכסים
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
חותמת זמן
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- הצג הכל »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
תנאי השירות
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ מדיניות פרטיות
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
הצעות קנייה
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ אושר
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
עמלת רישום נכסים
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- בונים מנוע מחקר ממפול ובלוקציין לקהילת הביטקוין, ממוקד על שוק העמלות העברות והאקוסיסטם ורב-שיכבתי, ללא פרסום, אלטקויינים, או מעקבים גוף שלישי.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- נותני חסות ארגוניים 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- נותני חסות מהקהילה ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
הצטרפו כנותני חסות ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
נווט ל https://mempool.space/sponsor לתמיכה
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- שיתופי פעולה עם הקהילה
+
+ Enterprise Sponsors 🚀
+ נותני חסות ארגוניים 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ נותני חסות מהקהילה ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
בני ברית מהקהילה
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
תורמי הפרוייקט
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
חברי צוות הפרוייקט
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
מתחזקי הפרוייקט
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
אודות
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- ריבוי חתימות מתוך
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- ברק
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- ליקוויד
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- מספר הטרנזקציות שבכתובת הזו חוצה את גבול שרת האלקטרום שקול לצפות בכתובת זו באתר הרשמי של 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
שם
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
כמות שרופה
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
סכום במחזור
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
שגיאה בטעינת נתוני נכס.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
נכס:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ נכסים
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ חיפוש נכס
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ ניקוי
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ פסנוע
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ דומיין מנפיק
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ מזהה נכס
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ שגיאה בטעינת נתוני נכסים.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
לא מקוון
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
לוח מחוונים
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
סטטיסטיקה
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
מסמכים
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ גודל
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ משקל
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
הבלוק הבא
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- חותמת זמן
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- גודל
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- משקל
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
עמלה חציונית
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
סך העמלות
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
תגמול כולל
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
כורה
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
ביטים
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
שורש מרקל
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
קושי
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
תוספתא
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
קידוד כותר הבלוק
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
פרטים
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
שגיאה בטעינת נתוני הבלוק.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
בלוק :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ נכרה
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
הועתק!
@@ -2164,833 +2503,126 @@
15
-
- API service
- שירותי API
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- נקודת קצה
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- תיאור
+
+ Difficulty Adjustment
+ התאמת קשי
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ נותרו
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- מחזיר פרטים לגבי התאמת הקושי.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- ספק רשימת מטבעות זמינים למטבע בסיס נתון.
+
+ Estimate
+ הערכה
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- ספק רשימת הצעות מחיר פתוחות לשוק יחיד.
+
+ Previous
+ הקודם
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- ספק מידע אודות שוק נתון, שערי פתיחה/סגירה/מקסימום/מינימום. ניתן להשתמש בכך כדי ליצור טבלאת נרות.
+
+ Current Period
+ מחזור נוכחי
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- ספק רשימת שווקים זמינים.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- ספק רשימת פרטי הצעות פתוחות לשוק בודד.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- ספק תמחור ל24 שעות לשוק בודד או שווקים
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- ספק רשימת כל העסקאות לשוק בודד.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- ספק נתוני נפח תקופתיים במונחי מטבע בסיס עבור אחד השווקים או כל השווקים.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Returns statistics about all Bisq transactions.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Returns information about a Liquid asset.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- מחזיר את כותרת הבלוק בקידוד הקס.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Returns the raw block representation in binary.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Returns the height of the last block.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Returns the hash of the last block.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Returns a list of all txids in the block.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- מחזירה את הממפול הנוכחי כבלוקים צפויים.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- מחזירה את העמלות המומלצות כרגע לטרנזקציות חדשות.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Returns current mempool backlog statistics.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- קבל את הרשימה המלאה של txids ב- mempool כמערך. סדר ה-txids הוא שרירותי ואינו תואם bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- מחזירה את האבות ואת העמלות הטובים ביותר לטרנזקציה.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Returns a transaction serialized as hex.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Returns the spending status of all transaction outputs.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Returns a transaction as binary data.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Returns :length of latest Bisq transactions, starting from :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- קוד לדוגמה
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- התקנת חבילה
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- תגובה
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- דוקיומנטציה
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- מדיניות פרטיות
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3031,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes לשניה:
+
+ Incoming transactions
+ טרנזקציות נכנסות
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
מתבצע סנכרון בצד שרת
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3058,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3072,11 +2708,11 @@
טרם אושר
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3086,60 +2722,109 @@
גודל הממפול
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- בלוקים
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- בלוק
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- נכרה
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- בלוקים
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3147,31 +2832,56 @@
גרפים
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
תצוגת מרקע
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ דוקיומנטציה
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
מרווח עמלה
@@ -3181,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- סך העמלות
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- בלוק הבא
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
ערימה של בלוקי ממפול
@@ -3219,7 +2912,7 @@
טווח
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3227,33 +2920,307 @@
סכום
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- לא ידוע
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- הזדהה באמצעות כתובת תשלום: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- הזדהה באמצעות תיוג מטבעה: ' '
+
+ Latest blocks
+ בלוקים אחרונים
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3268,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- קידוד טרנזקציה
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3286,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
מזהה טרנזקציה, גובה בלוק, גיבוב או כתובת
@@ -3309,7 +3344,7 @@
נותן חסות
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3322,7 +3357,7 @@
בקשת חשבונית
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3331,7 +3366,7 @@
ממתין לטרנזקציה...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3340,7 +3375,7 @@
תרומה אושרה!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3349,7 +3384,7 @@
תודה לך!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3358,7 +3393,7 @@
Mempool by vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3367,7 +3402,7 @@
סנן
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3376,7 +3411,7 @@
להפוך
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3385,7 +3420,7 @@
טרנזקציות vBytes לשניה (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3604,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- אושר
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
נראה לראשונה
@@ -3697,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- גודל
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- משקל
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
זמן נעילה
@@ -3754,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
- סאטושיז
+ סאט
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3779,7 +3788,7 @@
מטבעה
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3788,7 +3797,7 @@
(מטבעות שזה עתה נוצרו)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3797,7 +3806,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3806,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3816,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3826,7 +3835,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3835,16 +3844,24 @@
P2SH redeem script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH witness script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3853,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3862,7 +3879,7 @@
פלט קודם
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3871,29 +3888,16 @@
סוג פלט קודם
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- טען הכל
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
התפגר ל
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3902,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3912,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- נתונים
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- סאט
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
טרנזקציה זו חסכה % בעמלות באמצעות שימוש בNative SegWit-Bech32
@@ -4077,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- בלוקים אחרונים
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
טרנזקציות אחרונות
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4117,7 +4080,7 @@
דולר אמריקאי
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4126,7 +4089,7 @@
עמלה
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4135,7 +4098,7 @@
הרחב
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4144,7 +4107,7 @@
מזער
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4153,7 +4116,7 @@
עמלה מינימלית
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4163,7 +4126,7 @@
סף עמלה
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4173,7 +4136,7 @@
שימוש בזיכרון
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4183,75 +4146,94 @@
L-BTC במחזור
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- טרנזקציות נכנסות
+
+ API service
+ שירותי API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- התאמת קשי
+
+ Endpoint
+ נקודת קצה
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- נותרו
+
+ Description
+ תיאור
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- הערכה
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- הקודם
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- מחזור נוכחי
+
+ Code Example
+ קוד לדוגמה
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ התקנת חבילה
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ תגובה
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.hi.xlf b/frontend/src/locale/messages.hi.xlf
index 54a706212..bf36f3754 100644
--- a/frontend/src/locale/messages.hi.xlf
+++ b/frontend/src/locale/messages.hi.xlf
@@ -5,16 +5,15 @@
Close
बंद
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- स्लाइड
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
पिछला
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
अगला
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
महीना चुनिए
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
वर्ष चुनें
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
पिछ्ला महिना
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
अगला महीना
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
एचएच
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
घंटे
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
एम्एम्
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
मिनट
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
घंटे बढ़ाए
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
घंटे घटाये
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
मिनट बढ़ाये
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
मिनट घटाये
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
एसएस
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
सेकंड
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
सेकंड बढ़ाये
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
सेकंड घटाये
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
बंद
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- पंजीकृत संपत्ति
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- संपत्ति खोजें
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- साफ़ करे
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- नाम
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- टिकर
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- जारीकर्ता डोमेन
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- एसेट आईडी
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- एसेट डेटा लोड करने में गड़बड़ी.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- संपत्ति
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
समय-चिह्न
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- सभी देखें »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
नियम और शर्तें
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ गोपनीयता नीति
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
खरीदने के ऑफर
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ पुष्ट
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
एसेट लिस्टिंग शुल्क
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- बिटकॉइन समुदाय के लिए एक मेमपूल और ब्लॉकचेन एक्सप्लोरर का निर्माण, बिना किसी विज्ञापन, ॉटकॉइन या तीसरे पक्ष के ट्रैकर्स के लेनदेन शुल्क बाजार और बहु-परत पारिस्थितिकी तंत्र पर ध्यान केंद्रित करना।
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- एंटरप्राइज़ प्रायोजक
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- समुदाय प्रायोजक ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
प्रायोजक बनें ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
प्रायोजक के लिए https://mempool.space/sponsor पर नेविगेट करें
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- सामुदायिक एकीकरण
+
+ Enterprise Sponsors 🚀
+ एंटरप्राइज़ प्रायोजक
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ समुदाय प्रायोजक ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
सामुदायिक गठबंधन
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
परियोजना योगदानकर्ता
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
परियोजना सदस्य
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
परियोजना अनुरक्षक
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
विवरण
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- मल्टीसिग of
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- बिजली
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- तरल
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit 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
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
नाम
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
पेग्गड़ इन
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
पेग्गड़ आउट
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
जली हुई राशि
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
परिसंचारी राशि
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
एसेट डेटा लोड करने में गड़बड़ी.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
संपत्ति:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ संपत्ति
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ संपत्ति खोजें
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ साफ़ करे
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ टिकर
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ जारीकर्ता डोमेन
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ एसेट आईडी
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ एसेट डेटा लोड करने में गड़बड़ी.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
ऑफलाइन
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
डैशबोर्ड
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
आँकड़े
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
डॉक्स
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ साइज
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ वेइट
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
अगला ब्लॉक
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- समय-चिह्न
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- साइज
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- वेइट
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
औसत शुल्क
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
कुल शुल्क
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
सब्सिडी + शुल्क:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
माइनर
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
बिट्स
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
मर्कल रुट
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
कठिनाई
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
नोन्स
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
ब्लॉक हैडर हेक्स
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
विवरण
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
ब्लॉक डेटा लोड करने में गड़बड़ी.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
ब्लॉक :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ माइंड
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
कोपीड!
@@ -2164,850 +2503,126 @@
15
-
- API service
- एपीआई सेवा
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- ैंडपॉइन्ट
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- विवरण
+
+ Difficulty Adjustment
+ डिफीकल्टी एडजस्टमेंट
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ बचा हुआ
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- कठिनाई समायोजन के बारे में विवरण देता है।
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- किसी दी गई आधार मुद्रा के लिए उपलब्ध मुद्राओं की सूची प्रदान करता है।
+
+ Estimate
+ आकलन
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- एकल बाजार के लिए खुली पेशकश की कीमतों की सूची प्रदान करता है।
+
+ Previous
+ पिछला
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- किसी दिए गए बाजार के लिए उच्च/निम्न/खुला/बंद डेटा प्रदान करता है। इसका उपयोग कैंडलस्टिक चार्ट बनाने के लिए किया जा सकता है।
+
+ Current Period
+ वर्तमान अवधि
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- उपलब्ध बाजारों की सूची प्रदान करता है।
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- एकल बाजार के लिए खुली पेशकश के विवरण की सूची प्रदान करता है।
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- एकल बाजार या सभी बाजारों के लिए 24 घंटे का मूल्य टिकर प्रदान करता है
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- एकल बाजार के लिए पूर्ण किए गए ट्रेडों की सूची प्रदान करता है।
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- एक या सभी बाजारों के लिए आधार मुद्रा के रूप में आवधिक मात्रा डेटा प्रदान करता है।
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- सभी बिस्क लेनदेन के बारे में आंकड़े देता है।
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- किसी पते के बारे में विवरण देता है। उपलब्ध फ़ील्ड: पता , chain_stats , और mempool_stats । चेन, mempool _stats प्रत्येक के साथ tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , और spent_txo_sum एक वस्तु होते हैं।
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- निर्दिष्ट पते/स्क्रिप्टश के लिए लेन-देन इतिहास प्राप्त करें, सबसे पहले नवीनतम के साथ क्रमबद्ध करें। 50 मेमपूल लेन-देन और पहले 25 पुष्टि किए गए लेनदेन तक रिटर्न। आप :last_seen_txid (नीचे देखें) का उपयोग करके अधिक पुष्टि किए गए लेनदेन का अनुरोध कर सकते हैं।
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- निर्दिष्ट पते/स्क्रिप्टश के लिए पुष्टिकृत लेनदेन इतिहास प्राप्त करें, जिसे पहले नवीनतम के साथ क्रमबद्ध करें। प्रति पृष्ठ 25 लेनदेन लौटाता है। पिछली क्वेरी द्वारा देखे गए अंतिम txid को निर्दिष्ट करके और अधिक अनुरोध किया जा सकता है।
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- निर्दिष्ट पते/स्क्रिप्टश के लिए अपुष्ट लेनदेन इतिहास प्राप्त करें। 50 लेनदेन तक रिटर्न (कोई पेजिंग नहीं)।
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- पते / स्क्रिप्टश से जुड़े अव्ययित लेनदेन आउटपुट की सूची प्राप्त करें। उपलब्ध फ़ील्ड: txid, vout, मान और स्थिति (निधिकरण tx की स्थिति के साथ)। एक मूल्य प्रतिबद्धता फ़ील्ड भी है जो मूल्य के स्थान पर दिखाई दे सकती है, साथ ही निम्नलिखित अतिरिक्त फ़ील्ड: संपत्ति/संपत्ति प्रतिबद्धता, गैर/गैर-प्रतिबद्धता, surjection_proof , और रेंज_प्रूफ
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- लिक्विड एसेट के बारे में जानकारी देता है.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- निर्दिष्ट तरल संपत्ति से जुड़े लेनदेन लौटाता है। नेटवर्क की मूल संपत्ति के लिए, पेग इन, पेग आउट और बर्न लेनदेन की एक सूची देता है। उपयोगकर्ता द्वारा जारी संपत्तियों के लिए, जारी करने, फिर से जारी करने और बर्न लेनदेन की एक सूची देता है। इस संपत्ति को स्थानांतरित करने वाले नियमित लेनदेन शामिल नहीं हैं।
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- निर्दिष्ट संपत्ति की वर्तमान कुल आपूर्ति प्राप्त करें। नेटिव एसेट (L-BTC) के लिए, इसकी गणना [चेन,मेमपूल]_स्टैट्स.पेग_इन_अमाउंट - [चेन,मेमपूल]_स्टैट्स.पेग_आउट_अमाउंट - [चेन,मेमपूल]_स्टैट्स.बर्नड_अमाउंट के रूप में की जाती है। जारी की गई संपत्तियों के लिए, इसकी गणना [श्रृंखला, मेमपूल] _स्टैट्स.एशुद_अमाउंट - [श्रृंखला, मेमपूल] _स्टैट्स.बर्नड_अमाउंट के रूप में की जाती है। ब्लाइंड इश्यू वाली संपत्तियों के लिए उपलब्ध नहीं है। यदि /दशमलव निर्दिष्ट है, तो संपत्ति की विभाज्यता के अनुसार आपूर्ति को दशमलव के रूप में लौटाता है। अन्यथा, आधार इकाइयों में वापस कर दिया।
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- किसी ब्लॉक के बारे में विवरण देता है। उपलब्ध क्षेत्रों: आईडी , ऊंचाई , संस्करण , टाइमस्टैम्प , बिट्स , अस्थायी रूप से , merkle_root , tx_count , आकार , वजन , सबूत , और पिछलाब्लॉकहैश ।
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- हेक्स-एन्कोडेड ब्लॉक हेडर देता है।
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- वर्तमान में :height पर ब्लॉक का हैश लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- बाइनरी में रॉ ब्लॉक का प्रतिनिधित्व देता है।
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- किसी ब्लॉक की पुष्टि स्थिति लौटाता है। उपलब्ध फ़ील्ड: in_best_chain (बूलियन, अनाथ ब्लॉक के लिए झूठा), next_best (अगले ब्लॉक का हैश, केवल सर्वश्रेष्ठ श्रृंखला में ब्लॉक के लिए उपलब्ध)।
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- अंतिम ब्लॉक की ऊंचाई लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- अंतिम ब्लॉक का हैश लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- निर्दिष्ट ब्लॉक के भीतर सूचकांक : अनुक्रमणिका पर लेनदेन लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- ब्लॉक में सभी txid की सूची देता है।
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- ब्लॉक में लेन-देन की सूची देता है ( start_index से शुरू होने वाले 25 लेन-देन तक)। यहां लौटाए गए लेन-देन में स्थिति फ़ील्ड नहीं है, क्योंकि सभी लेन-देन समान ब्लॉक और पुष्टिकरण स्थिति साझा करते हैं।
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- टिप पर या :start_height पर निर्दिष्ट होने पर 10 नए ब्लॉक लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- वर्तमान मेमपूल को अनुमानित ब्लॉक के रूप में लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- नए लेनदेन के लिए हमारी वर्तमान में सुझाई गई फीस लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- वर्तमान मेमपूल बैकलॉग आँकड़े लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- एक ऐरे के रूप में मेमपूल में txid की पूरी सूची प्राप्त करें। txid का क्रम मनमाना है और बिटकॉइन से मेल नहीं खाता है।
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- मेमपूल में प्रवेश करने के लिए पिछले 10 लेनदेन की सूची प्राप्त करें। प्रत्येक लेनदेन वस्तु में निम्नलिखित क्षेत्रों के साथ सरलीकृत अवलोकन डेटा होता है: txid, शुल्क, बनाम आकार, और मूल्य।
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- लेन-देन के लिए पूर्वजों और सर्वोत्तम वंशज शुल्क लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- लेन-देन के बारे में विवरण देता है। उपलब्ध क्षेत्रों: txid , संस्करण , locktime , आकार , वजन , शुल्क , विन , vout , और स्थिति ।
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- हेक्स के रूप में क्रमबद्ध एक लेनदेन देता है।
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- बिटकॉइन के मर्कलब्लॉक प्रारूप का उपयोग करके लेनदेन के लिए एक मर्कल समावेशन प्रमाण देता है।
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Electrum के blockchain.transaction.get_merkle प्रारूप का उपयोग करके लेनदेन के लिए एक मर्कल समावेशन प्रमाण देता है।
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- लेन-देन आउटपुट की व्यय स्थिति लौटाता है। उपलब्ध फ़ील्ड: खर्च (बूलियन), txid (वैकल्पिक), vin (वैकल्पिक), और स्थिति (वैकल्पिक, खर्च करने की स्थिति tx)।
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- सभी लेन-देन आउटपुट की व्यय स्थिति लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- लेन-देन को बाइनरी डेटा के रूप में लौटाता है।
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- लेन-देन की पुष्टि की स्थिति लौटाता है। उपलब्ध फ़ील्ड: ने (बूलियन), block_height (वैकल्पिक), और block_hash (वैकल्पिक) की पुष्टि की।
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- रिटर्न: नवीनतम बिस्क लेनदेन की लंबाई, :इंडेक्स.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- नेटवर्क पर एक कच्चा लेनदेन प्रसारित करें। लेन-देन अनुरोध निकाय में हेक्स के रूप में प्रदान किया जाना चाहिए। सफलता मिलने पर txid लौटा दिया जाएगा।
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- डिफ़ॉल्ट पुश: क्रिया: 'चाहते हैं', डेटा: ['ब्लॉक', ...] जो आप चाहते हैं उसे व्यक्त करने के लिए धक्का दिया। उपलब्ध: ब्लॉक, मेमपूल-ब्लॉक, लाइव-2h-चार्ट, और आँकड़े। पते से संबंधित लेनदेन को पुश करें: 'ट्रैक-एड्रेस': '3PbJ...bF9B' इनपुट या आउटपुट के रूप में उस पते वाले सभी नए लेनदेन प्राप्त करने के लिए। लेन-देन की एक सरणी देता है। नए मेमपूल लेनदेन के लिए पता-लेनदेन, और नए ब्लॉक की पुष्टि लेनदेन के लिए ब्लॉक-लेनदेन।
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- एपीआई
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- कोड उदाहरण
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- इनस्टॉल पैकेज
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- रिस्पांस
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- प्रलेखन
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- गोपनीयता नीति
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- प्रति सेकंड टीएक्स वीबाइट्स:
+
+ Incoming transactions
+ आने वाले ट्रांसक्शन्स
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
बैकएंड सिंक्रोनाइज़ कर रहा है
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
वीबी/एस
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
अपुष्ट
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
मेमपूल साइज
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- ब्लॉक
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- ब्लॉक
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- माइंड
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- ब्लॉक
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
ग्राफ्स
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
टीवी दृश्य
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ प्रलेखन
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
फी स्पेन
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- कुल शुल्क
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- अगला ब्लॉक
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
मेमपूल ब्लॉक का ढेर
@@ -3236,7 +2912,7 @@
श्रेणी
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
योग
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- अननोन
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- पेआउट पते से पहचाना गया: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- कॉइनबेस टैग द्वारा पहचाना गया: ' '
+
+ Latest blocks
+ नई ब्लॉक
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- ट्रांसेक्शन हेक्स
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, ब्लॉक ऊंचाई, हैश या पता
@@ -3326,7 +3344,7 @@
स्पॉंसर
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
रिक्वेस्ट इनवॉइस
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
ट्रांसेक्शन की प्रतीक्षा कर रहा है...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
दान पुष्ट!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
शुक्रिया!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
vBytes द्वारा मेमपूल (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
फ़िल्टर
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
उल्टे
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
लेनदेन vBytes प्रति सेकंड (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- पुष्ट
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
प्रथम देखा
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- साइज
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- वेइट
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
लॉकटाइम
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
सैट
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
कॉइनबेस
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(नए सृजित कोइन्स)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
पेग-इन
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
स्क्रिप्टसिग (एएसएम)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
स्क्रिप्टसिग (हेक्स)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
विटनेस
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
P2SH रिडीम स्क्रिप्ट
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH विटनेस स्क्रिप्ट
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nसीक्वेंस
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
पिछली आउटपुट स्क्रिप्ट
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
पिछला आउटपुट प्रकार
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- सभी लोड करें
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
पेग-आउट से
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
स्क्रिप्टपबकी (एएसएम)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
स्क्रिप्टपबकी (हेक्स)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- डाटा
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- सैट
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
इस लेन-देन ने मूल SegWit-Bech32 का उपयोग करके शुल्क पर % की बचत की
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- नई ब्लॉक
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
नवीनतम ट्रांसक्शन्स
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
शुल्क
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
विस्तार करें
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
छोटा करें
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
न्यूनतम शुल्क
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
पर्जिंग
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
मेमोरी उपयोग
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
प्रचलन में एल-बीटीसी
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- आने वाले ट्रांसक्शन्स
+
+ API service
+ एपीआई सेवा
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- डिफीकल्टी एडजस्टमेंट
+
+ Endpoint
+ ैंडपॉइन्ट
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- बचा हुआ
+
+ Description
+ विवरण
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- आकलन
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ डिफ़ॉल्ट पुश: क्रिया: 'चाहते हैं', डेटा: ['ब्लॉक', ...] जो आप चाहते हैं उसे व्यक्त करने के लिए धक्का दिया। उपलब्ध: ब्लॉक, मेमपूल-ब्लॉक, लाइव-2h-चार्ट, और आँकड़े। पते से संबंधित लेनदेन को पुश करें: 'ट्रैक-एड्रेस': '3PbJ...bF9B' इनपुट या आउटपुट के रूप में उस पते वाले सभी नए लेनदेन प्राप्त करने के लिए। लेन-देन की एक सरणी देता है। नए मेमपूल लेनदेन के लिए पता-लेनदेन, और नए ब्लॉक की पुष्टि लेनदेन के लिए ब्लॉक-लेनदेन।
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- पिछला
+
+ API
+ एपीआई
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- वर्तमान अवधि
+
+ Code Example
+ कोड उदाहरण
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ इनस्टॉल पैकेज
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ रिस्पांस
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf
index 90b33c173..39de4956c 100644
--- a/frontend/src/locale/messages.hr.xlf
+++ b/frontend/src/locale/messages.hr.xlf
@@ -4,337 +4,242 @@
Close
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
Previous
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
Previous month
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -401,15 +306,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -425,15 +330,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -472,9 +377,8 @@
block.hash
-
+
Timestamp
- Vremenski otisak
src/app/bisq/bisq-block/bisq-block.component.html
23
@@ -485,14 +389,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -532,13 +455,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -548,10 +487,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -566,16 +501,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -590,23 +521,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -735,8 +674,8 @@
bisq-dashboard.market-price-title
-
- View all »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -746,32 +685,65 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
@@ -866,6 +838,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -915,11 +903,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -946,7 +934,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -967,7 +955,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -978,7 +966,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1019,7 +1007,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1040,7 +1028,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1137,7 +1125,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1159,9 +1147,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Potvrđena
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
@@ -1300,34 +1302,18 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1335,35 +1321,67 @@
Navigate to https://mempool.space/sponsor to sponsor
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
+
+ Enterprise Sponsors 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1371,7 +1389,7 @@
Project Members
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1379,7 +1397,7 @@
Project Maintainers
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1387,44 +1405,27 @@
About
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1458,8 +1459,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit 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
@@ -1476,17 +1477,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1506,14 +1511,21 @@
Liquid Asset page title
asset
-
+
Name
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1546,7 +1558,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1555,7 +1567,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1564,7 +1576,7 @@
Burned amount
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1573,11 +1585,11 @@
Circulating amount
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1610,7 +1622,7 @@
Error loading asset data.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1618,9 +1630,134 @@
Asset:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
@@ -1629,7 +1766,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1645,7 +1782,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1661,7 +1798,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1673,15 +1810,15 @@
Dashboard
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1689,11 +1826,7 @@
Stats
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1701,52 +1834,134 @@
Docs
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
-
- Next Block
+
+ Block Fee Rates
- src/app/components/block/block.component.html
- 7,8
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
- src/app/components/block/block.component.html
- 19,20
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
- Next Block
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
-
- Previous Block
+
+ Block Fees
- src/app/components/block/block.component.html
- 26,27
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
- Previous Block
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
-
- Timestamp
+
+ Fees
- src/app/components/block/block.component.html
- 55,57
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
- block.timestamp
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
Size
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
src/app/components/block/block.component.html
64,66
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
src/app/components/latest-blocks/latest-blocks.component.html
13,16
@@ -1757,21 +1972,67 @@
src/app/components/mempool-graph/mempool-graph.component.ts
- 257
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
src/app/dashboard/dashboard.component.html
- 94,97
+ 116,119
- block.size
Weight
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
src/app/components/block/block.component.html
68,70
- block.weight
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
+
+ Next Block
+
+ src/app/components/block/block.component.html
+ 7,8
+
+
+ src/app/components/block/block.component.html
+ 19,20
+
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
+ Next Block
+
+
+ Previous Block
+
+ src/app/components/block/block.component.html
+ 26,27
+
+ Previous Block
Median fee
@@ -1798,7 +2059,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1826,7 +2087,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -1846,15 +2107,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -1887,11 +2148,15 @@
Total fees
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -1900,11 +2165,11 @@
Subsidy + fees:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -1913,7 +2178,7 @@
Miner
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -1921,7 +2186,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -1929,7 +2194,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -1937,7 +2202,27 @@
Difficulty
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -1945,7 +2230,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -1953,7 +2238,7 @@
Block Header Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -1962,7 +2247,7 @@
Detalji
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -1975,7 +2260,7 @@
Error loading block data.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -1983,9 +2268,73 @@
Block :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
@@ -1993,795 +2342,121 @@
15
-
- API service
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
+
+ Difficulty Adjustment
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
+
+ Estimate
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
+
+ Previous
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
+
+ Current Period
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -2819,23 +2494,27 @@
fees-box.high-priority
-
- Tx vBytes per second:
+
+ Incoming transactions
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -2843,11 +2522,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -2856,11 +2535,11 @@
Unconfirmed
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -2869,86 +2548,163 @@
Mempool size
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
Graphs
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
@@ -2957,21 +2713,6 @@
mempool-block.fee-span
-
- Total fees
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
@@ -2990,37 +2731,313 @@
Range
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
Sum
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
+
+ Latest blocks
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3034,13 +3051,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3051,6 +3068,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
@@ -3071,7 +3157,7 @@
Sponsor
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3083,7 +3169,7 @@
Request invoice
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3091,7 +3177,7 @@
Waiting for transaction...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3099,7 +3185,7 @@
Donation confirmed!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3107,7 +3193,7 @@
Thank you!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3115,7 +3201,7 @@
Mempool by vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3123,7 +3209,7 @@
Filter
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3131,7 +3217,7 @@
Invert
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3139,7 +3225,7 @@
Transaction vBytes per second (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3354,21 +3440,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Potvrđena
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Prvo viđeno
@@ -3442,26 +3518,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Veličina
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Težina
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
@@ -3496,15 +3552,18 @@
Transaction fee
transaction.fee
-
+
sat
- sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3519,7 +3578,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3527,7 +3586,7 @@
(Newly Generated Coins)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3535,7 +3594,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3543,7 +3602,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3552,7 +3611,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3561,7 +3620,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3569,15 +3628,23 @@
P2SH redeem script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3585,7 +3652,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3593,7 +3660,7 @@
Previous output script
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3601,27 +3668,15 @@
Previous output type
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3629,7 +3684,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3638,28 +3693,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
@@ -3788,35 +3826,15 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -3824,7 +3842,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -3832,7 +3850,7 @@
Fee
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -3840,7 +3858,7 @@
Expand
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -3848,7 +3866,7 @@
Collapse
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -3856,7 +3874,7 @@
Minimum fee
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -3865,7 +3883,7 @@
Purging
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -3874,7 +3892,7 @@
Memory usage
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -3883,69 +3901,87 @@
L-BTC in circulation
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
+
+ API service
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
+
+ Endpoint
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
+
+ Description
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
+
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
+
+ Code Example
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.hu.xlf b/frontend/src/locale/messages.hu.xlf
index e5cf4ce08..5cd43f302 100644
--- a/frontend/src/locale/messages.hu.xlf
+++ b/frontend/src/locale/messages.hu.xlf
@@ -5,16 +5,15 @@
Close
Bezár
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- a szelet
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Előző
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Következő
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Hónap kiválasztása
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Év kiválasztása
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Előző hónap
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Következő hónap
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
ÓÓ
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Óra
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
PP
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Perc
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Növekedés óránként
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Csökkenés óránként
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Növekedés percenként
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Csökkenés percenként
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Másodpercek
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Növelés másodpercel
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Csökkenés másodpercel
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Bezárás
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Regisztrált assetok
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Asset keresése
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Törlés
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Név
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Kibocsájtó főcíme
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- Asset ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Hiba történt az assetok adainak betöltésekor.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Assetok
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Időbélyeg
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Mind megtekintése »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Általános Szolgáltatási Feltételek
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Adatkezelési Szabályzat
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Vásárlási Ajánlatok
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Megerősítve
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Asset listázási ár
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Építjük a mempool és blockchain felfedezőt a Bitcoin közösség számára, a tranzakciós díj piac és több-rétegű ekoszitszémára fokuszálva, mindez annélkül hogy bármilyen hirdetés, altcoin vagy harmadik-fél nyomkövető sütiket használnánk hozzá.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Enterprise Szponzorok 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Közösségi Szponzorok ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Legyél te is támogatónk! ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Navigálj a https://mempool.space/sponsor -ra hogy támogasd a projektet
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Közösségi Integrációk
+
+ Enterprise Sponsors 🚀
+ Enterprise Szponzorok 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Közösségi Szponzorok ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Közösségi Szövetségesek
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Projekt Kontribútorok
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Projekt Tagok
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Projekt Fenntartók
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
Részletek
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig a
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Az ezen a címen végrehajtott tranzakciók száma meghaladja az Electrum szerver korlátját Fontolja meg inkább ezt a címet a hivatalos Mempool webhelyen:
+
+ 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
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Név
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Betéve
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Kivéve
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Kibocsájtó
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Körforgásban lévő mennyiség
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Hiba történt az asset adatainak betöltésekor.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Eszköz:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Assetok
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Asset keresése
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Törlés
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Kibocsájtó főcíme
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ Asset ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Hiba történt az assetok adainak betöltésekor.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Nem elérhető
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Irányítópult
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Adatok
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Dokumentumok
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Méret
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Súly
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Következő blokk
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Időbélyeg
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Méret
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Súly
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Átlag díj
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Összdíj
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Blokk támogatás + Díj:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Bányász
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merkle törzs
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Nehézség
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nounce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Blokk Fejcím Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Részletek
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Hiba történt a blokk infirmáció betöltésekor.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Blokk :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Bányászott
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXek
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Másolva!
@@ -2164,849 +2503,126 @@
15
-
- API service
- API szolgáltatás
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Végpont
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Leírás
+
+ Difficulty Adjustment
+ Bányászási Nehézségifok
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Hátramaradt
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Részleteket ad vissza a bányászási nehézségifokról.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Megadja az elérhető pénznemek listáját egy adott alappénznemhez.
+
+ Estimate
+ Becslés
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Az egységes piacra vonatkozó nyílt ajánlati árak listája.
+
+ Previous
+ Előző
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Mags/alacsony/nyitó/zárás adatokat szolgáltat egy adott piacra vonatkozóan. Ez használható candlestick diagram létrehozására.
+
+ Current Period
+ Mostani Periódus
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Elérhető piacok listáját adja.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Az egységes piacra vonatkozó nyílt ajánlat részleteinek listája.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- 24 órás árjegyzőt biztosít az egységes piacra vagy az összes piacra
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Az egységes piac lezárt ügyleteinek listáját tartalmazza.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Időszakos mennyiségi adatokat szolgáltat alappénznemben egy vagy az összes piacra vonatkozóan.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Visszaad statisztikákat minden Bisq tranzakcióról.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Kimutat részleteket egy címről. Elérhető mezők: address , chain_stats , és mempool_stats . chain,mempool _stats mindeggyike objektumot tartalmaz ezekkel tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , és spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Töltse le a megadott cím/szkripthash tranzakcióelőzményeit, először a legújabbakkal rendezve. Legfeljebb 50 mempool tranzakciót ad vissza, az első 25 megerősített tranzakcióval együtt. További megerősített tranzakciókat igényelhet a :last_seen_txid használatával (lázsd lentebb).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Ellenőrizze a megadott cím/szkripthash tranzakciós előzményeit, először a legújabbak szerint rendezve. 25 tranzakciót ad vissza oldalanként. Többet kérhet az előző lekérdezés által látott utolsó txid megadásával.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Megerősítetlen tranzakciós előzmények lekérése a megadott címhez/scripthashhoz. Legfeljebb 50 tranzakciót ad vissza (lapozás nélkül).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Ezzel megkaphatodn a nem elköltött tranzakciók kimeneteivel összeassociált címeket/szkripthashokat. Elérhető mezők: txid , vout , value , és status (a tx finanszírozási státusszal). Még ezek is mint a valuecommitment mező amely a helyén található értékkel , hozzá táruslva a következő mezőkkel: asset / assetcommitment , nonce / noncecommitment , subjection_proof , és range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Visszadja a Liquid eszköz adatait.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- A megadott Liquid assetokhoz kapcsolódó tranzakciókat adja eredményül. A hálózat natív assetokhoz visszaküldi a beillesztési, a rögzítési és a kiégetési tranzakciók listáját. A felhasználó által kibocsátott assetok esetében a kibocsátási, újbóli kibocsájtási és égési tranzakciók listáját adja vissza. Nem tartalmazza a rendszeres tranzakciókat, amelyek ezt az assetot átruházzák.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Szerezze be a megadott eszköz aktuális teljes assetjét. A natív asset (L-BTC) esetében ez a következő módon kerül kiszámításra: [lánc, mempool] _stats.peg_in_amount - [chain, mempool] _stats.peg_out_amount - [chain, mempool] _stats.burned_amount. A kibocsátott asset esetében ez a következő módon kerül kiszámításra: [lánc, mempool] _stats.issued_amount - [lánc, mempool] _stats.burned_amount. Nem elérhető a vakkibocsátású asset esetében. Ha a / decimális érték meg van adva, akkor az asset oszthatóságának megfelelően tizedesértékként adja vissza a kínálatot. Ellenkező esetben alapegységekben tér vissza.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Adatokat ad vissza egy blokkról. Elérhető mezők: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , és previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Visszaírja a hex-kódolt blokk fejlécet.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Visszaadja a mostani blokk jelenlegi magasságát :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Visszaadja a nyers blokk bináris adatát reprezentatív módon.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Egy blokk megerősítési állapotát adja vissza. Elérhető mezők: in_best_chain (logikai érték, hamis az árva blokkokhoz), next_best (a következő blokk hashja, csak a legjobb lánc blokkjaihoz érhető el).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Visszaadja az utolsó blokk magasságát.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Visszaadja az utolsó blokk heshjét.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Az index :index tranzakciót adja vissza a megadott blokkon belül.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Visszaadja a blokk összes txidjét.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Visszaadja a blokkban szereplő tranzakciók listáját (legfeljebb 25 tranzakció kezdődik a start_index kezdőponttól). Az ide visszaküldött tranzakcióknak nincs állapotmezőjük , mivel az összes tranzakciónak ugyanaz a blokk- és megerősítési állapota.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Visszaadja a 10 legújabb blokkot a csúcstól vagy a :start_height -tól kezdve, ha meg van adva.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Visszaadja a mostani mempool-t előremutatott blokkoként.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Visszaadja az új tranzakciókért jelenleg javasolt díjainkat.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Visszaadja a mostani hátramaradt mempool statisztikáit.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Ezzel tömbként kapja meg a mxpool txidek teljes listáját. A txidek sorrendje tetszőleges, és nem egyezik meg a bitcoind-ben szereplővel.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Szerezzen be egy listát az utolsó 10 tranzakcióról, amellyel beléphet a mempoolba. Minden tranzakciós objektum egyszerűsített áttekintő adatokat tartalmaz, a következő mezőkkel: txid , fee , vsize , és value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Visszaadja az előd és a legjobb utód díjjakat egy tranzakcióhoz.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Visszaadja a tranzakció részleteit. Elérhető mezők: txid , version , locktime , size , weight , fee , vin , vout , és status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Hexként szériázott tranzakciót ad vissza.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- A bitcoind merkleblock formátumát használó tranzakcióhoz egy merkle-bevonási igazolást ad vissza.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- A tranzakcióhoz egy merkle felvételi igazolást ad vissza az Electrum blockchain.transaction.get_merkle formátumával.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Visszaadja egy tranzakció kimeneteinek költési állapotát. Elérhető mezők: spent (logikai érték), txid (opcionális), vin (opcionális) és status (opcionális, a költés tx állapota).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Visszaadja a elköltési státuszát minden kimeneti tranzakciónak.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Tranzakciót ad vissza bináris adatként.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Egy tranzakció megerősítési állapotát adja vissza. Elérhető mezők: confirmed (boolean), block_height (opcionális), és block_hash (opcionális).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Visszaadja a :length hosszát az utolsó Bisq tranzakciónak az :index -től kiindulva.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Nyers tranzakció közvetítése a hálózatra. A tranzakciót hexadecimális alakban kell megadni a kérés törzsében. A txid siker esetén vissza érkezik.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Kód Példa
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Csomag Telepítése
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Válasz
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Dokumentáció
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Adatkezelési Szabályzat
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3047,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBájt másorpercenként:
+
+ Incoming transactions
+ Beérkező tranzakciók
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
A háttérszolgáltatás épp szinkrinizál
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3074,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3088,11 +2708,11 @@
Nem megerősített
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3102,60 +2722,109 @@
Mempool méret
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- blokkok
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- blokk
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Bányászott
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Blokkok
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3163,31 +2832,56 @@
Grafikon
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV nézet
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Dokumentáció
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Díj fesztáv
@@ -3197,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Összdíj
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Következő blokk
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
mempool blokk
@@ -3235,7 +2912,7 @@
Távolság
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3243,33 +2920,307 @@
Összesen
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Ismeretlen
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Kifizetési cím alapján azonosítva: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Coinbase tag által azonosítva: ' '
+
+ Latest blocks
+ Legutóbbi blokkok
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3284,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Tranzakciós Hex
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3302,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, blokk magasság, hash vagy cím
@@ -3325,7 +3344,7 @@
Szponzor
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3338,7 +3357,7 @@
Számla kérése
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3347,7 +3366,7 @@
Tranzakcióra vár...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3356,7 +3375,7 @@
Adomány megerősítve!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3365,7 +3384,7 @@
Köszönjük! ❤️
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3374,7 +3393,7 @@
Mempool vBájtonként (sat/vBájt)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3383,7 +3402,7 @@
Filter
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3392,7 +3411,7 @@
Invertál
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3401,7 +3420,7 @@
vBájtnyi tranzakciók másodpercenként (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3620,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Megerősítve
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Először látva
@@ -3713,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Méret
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Súly
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Zárolási idő
@@ -3770,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3795,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3804,7 +3797,7 @@
(Újjonnan Létrehozott Érmék)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3813,7 +3806,7 @@
Bekötés
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3822,7 +3815,7 @@
SzkriptSzig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3832,7 +3825,7 @@
SzkriptSzig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3842,7 +3835,7 @@
Szemtanú
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3851,16 +3844,24 @@
P2SH kiváltási szkript
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH szemtanú szkript
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3869,7 +3870,7 @@
nSzekvencia
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3878,7 +3879,7 @@
Előző kimeneti szkript
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3887,29 +3888,16 @@
Előző kimeneti típúsok
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Minden betöltése
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Kiváltás erre
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3918,7 +3906,7 @@
SzkriptPublikusKulcs (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3928,30 +3916,11 @@
SzkriptPublikusKulcs (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- adat
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
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
@@ -4093,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Legutóbbi blokkok
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXek
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Legutóbbi tranzakciók
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4133,7 +4080,7 @@
USA Dollár
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4142,7 +4089,7 @@
Díj
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4151,7 +4098,7 @@
Kibővít
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4160,7 +4107,7 @@
Becsuk
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4169,7 +4116,7 @@
Minimum Díj
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4179,7 +4126,7 @@
Törlés
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4189,7 +4136,7 @@
Memória használat
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4199,75 +4146,95 @@
L-BTC forgalomban
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Beérkező tranzakciók
+
+ API service
+ API szolgáltatás
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Bányászási Nehézségifok
+
+ Endpoint
+ Végpont
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Hátramaradt
+
+ Description
+ Leírás
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Becslés
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Alaphelyzeti push: művelet: 'kell', data: ['blocks', ...] hogy kifejezd mit szeretnél pusholni. Elérhető: blocks , mempool-blocks , live-2h-chart , and stats . Pusholjon tranzakciókat címekhez fogva: 'cím-követés': '3PbJ...bF9B' az összes új tranzakció fogadásához, amely ezt a címet tartalmazza bemenetként vagy kimenetként. Tranzakciók tömbjét adja vissza. cím-tranzakciók új mempool tranzakciókhoz , és block-tranzakciók az új blokk megerősített tranzakciókhoz.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Előző
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Mostani Periódus
+
+ Code Example
+ Kód Példa
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Csomag Telepítése
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Válasz
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.it.xlf b/frontend/src/locale/messages.it.xlf
index 6befde6d9..6aa2b8260 100644
--- a/frontend/src/locale/messages.it.xlf
+++ b/frontend/src/locale/messages.it.xlf
@@ -5,16 +5,15 @@
Close
Chiudi
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Slide di
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Precedente
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Successivo
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Seleziona mese
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Seleziona anno
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Scorso mese
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Mese prossimo
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Ore
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minuti
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Aumentare le ore
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Diminuire le ore
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Aumentare i minuti
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Diminuire i minuti
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Secondi
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Aumentare i secondi
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Diminuire i secondi
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Chiudi
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Asset registrati
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Cerca asset
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Pulire
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Nome
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Dominio dell'emittente
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID asset
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Errore nel caricamento dei dati degli asset.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Assets
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Timestamp
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Vedi tutto »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Condizioni d'uso
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Politica sulla Riservatezza
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Offerte di Acquisto
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Confermata
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Tassa di quotazione dell'asset
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Costruire un esploratore di mempool e blockchain per la comunità Bitcoin, concentrandosi sul mercato delle commissioni di transazione e sull'ecosistema multi-layer, senza pubblicità, altcoin o tracker di terze parti.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Sponsor Aziendali 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Sponsor comunitari ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Diventa uno sponsor ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Vai qui https://mempool.space/sponsor per sponsorizzare
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Integrazioni della comunità
+
+ Enterprise Sponsors 🚀
+ Sponsor Aziendali 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Sponsor comunitari ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Alleanze della comunità
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Hanno contribuito al progetto
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Membri del Progetto
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Manutentori del progetto
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
Su di noi
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig di
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Il numero di transazioni di questo indirizzo supera il limite del server Electrum Considera di guardare a questo indirizzo dal sito ufficiale 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Nome
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Quantità bruciata
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Importo circolante
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Errore nel caricamento dei dati dell'asset.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Asset:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Assets
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Cerca asset
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Pulire
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Dominio dell'emittente
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID asset
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Errore nel caricamento dei dati degli asset.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Offline
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Dashboard
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Statistiche
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Docs
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Dimensione
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Peso
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Prossimo Blocco
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Timestamp
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Dimensione
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Peso
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Commissione mediana
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Commissioni totali
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Ricompensa + commissioni:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Minatore
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Difficoltà
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Block Header Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Dettagli
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Si è verificato un errore durante il caricamento dei dati del blocco.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Blocco :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Minato
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Copiato!
@@ -2164,851 +2503,126 @@
15
-
- API service
- Servizio API
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Endpoint
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Descrizione
+
+ Difficulty Adjustment
+ Aggiustamento della Difficoltà
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Rimanente
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Mostra i dettagli sull'aggiustamento della difficoltà.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Fornisce l'elenco delle valute disponibili per una determinata valuta di base.
+
+ Estimate
+ Stima
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Fornisce l'elenco dei prezzi dell'offerta aperta per un singolo mercato.
+
+ Previous
+ Precedente
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Fornisce dati hi/low/open/close per un dato mercato. Questo può essere utilizzato per generare un grafico a candele.
+
+ Current Period
+ Periodo Attuale
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Fornisce l'elenco dei mercati disponibili.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Fornisce l'elenco dei dettagli dell'offerta aperta per un singolo mercato.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Fornisce un listino prezzi 24 ore su 24 per un singolo mercato o per tutti i mercati
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Fornisce l'elenco delle operazioni completate per un singolo mercato.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Fornisce dati periodici sul volume in termini di valuta di base per uno o tutti i mercati.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Restituisce le statistiche su tutte le transazioni Bisq.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Restituisce i dettagli su un indirizzo. Campi disponibili: address , chain_stats , e mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , e spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Ottieni la cronologia delle transazioni per l'indirizzo/scripthash specificato, ordinato con il più recente per primo. Restituisce fino a 50 transazioni mempool più le prime 25 transazioni confermate. Puoi richiedere più transazioni confermate usando :last_seen_txid (vedi sotto).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Ottieni la lista delle transazioni confermate per un indirizzo/scripthash, ordinate dalla più recente. Restituisce 25 transazioni per pagina. Più transazioni possono essere richieste specificando l'ultima txid vista dalla richiesta precedente.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Ottieni la lista delle transazioni non confermate per un indirizzo/scripthash. Restituisce fino a 50 transazioni (su una sola pagina)
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Ottieni l'elenco degli output delle transazioni non spese associati all'indirizzo/scripthash. Campi disponibili: txid , vout , value , and status (with the status of the funding tx). C'è anche valuecommitment field that may appear in place of value , oltre i seguenti campi addizionali asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Restituisce informazioni su degli attivi Liquid.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Restituisce le transazioni associate all'asset Liquid specificato. Per l'asset nativo della rete, restituisce un elenco di transazioni bruciate, di peg-in e peg-out. Per gli asset emessi dagli utenti, restituisce un elenco di transazioni bruciate, di emissione e di riemissione. Non include transazioni regolari che trasferiscono questo asset..
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Ottieni l'attuale fornitura totale dell'asset specificato. Per l'asset nativo (L-BTC), questo è calcolato come [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Per gli asset emessi, viene calcolato come [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Non disponibile per asset con emissioni in cieco. Se /decimal viene specificato, restituisce l'offerta come decimale in base alla divisibilità dell'asset. In caso contrario, restituisce in unità di base.
-
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Restituisce i dettagli su un blocco. Campi disponibili: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Mostra l'intestazione del blocco con codifica esadecimale.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Restituisce l'hash del blocco attualmente a :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Restituisce la rappresentazione del blocco grezzo in binario.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Restituisce lo stato di conferma di un blocco. Campi disponibili: in_best_chain (booleano, falso per blocchi orfani), next_best (l'hash del blocco successivo, disponibile solo per i blocchi nella migliore catena).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Restituisce l'altezza dell'ultimo blocco.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Restituisce l'hash dell'ultimo blocco.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Restituisce la transazione all'indice :index all'interno del blocco specificato.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Restituisce un elenco di tutti i txid nel blocco.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Restituisce un elenco di transazioni nel blocco (fino a 25 transazioni a partire da start_index ). Le transazioni restituite qui non hanno il campo status , poiché tutte le transazioni condividono lo stesso blocco e stato di conferma.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Restituisce i 10 blocchi più recenti a partire dalla punta o da start_height se specificato.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Restituisce la mempool corrente come blocchi proiettati.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Restituisce le commissioni attualmente suggerite da noi per le nuove transazioni.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Restituisce le statistiche correnti del backlog della mempool.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Ottieni l'elenco completo di txid nella mempool come array. L'ordine dei txid è arbitrario e non corrisponde a bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Ottieni un elenco delle ultime 10 transazioni per entrare nella mempool. Ogni oggetto di transazione contiene una panoramica di dati semplificati, con i seguenti campi: txid , fee , vsize , and value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Restituisce gli antenati e le migliori commissioni derivate per una transazione.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Restituisce i dettagli su una transazione. Campi disponibili: txid , version , locktime , size , weight , fee , vin , vout , and status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Restituisce una transazione serializzata come esadecimale.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Restituisce una prova di inclusione merkle per la transazione utilizzando il formato bitcoind's merkleblock
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Restituisce una prova di inclusione merkle per la transazione utilizzando il formato Electrum's blockchain.transaction.get_merkle.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Restituisce lo stato di spesa di un output di transazione. Campi disponibili: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Restituisce lo stato di spesa di tutti gli output delle transazioni.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Restituisce una transazione come dati binari.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Restituisce lo stato di conferma di una transazione. Campi disponibili: confirmed (boolean), block_height (optional), and block_hash (optional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Restituisce :lenght delle ultime transazioni Bisq, partendo da :index
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Trasmetti una transazione non elaborata alla rete. La transazione deve essere fornita come esadecimale nel corpo della richiesta. Verrà restituito il txid in caso di successo.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Push predefinito: action: 'want', data: ['blocks', ...] per esprimere cosa vuoi spingere. Disponibile: blocks , mempool-blocks , live-2h-chart , and stats . Spingi transazioni collegate all'indirizzo: 'track-address': '3PbJ...bF9B' per ricevere tutte le nuove transazioni contenenti quell'indirizzo come input o output. Restituisce un array di transazioni. address-transactions per nuove transazioni di mempool e block-transactions per le nuove transazioni confermate nel blocco.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Esempio di Codice
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Installa Pacchetto
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Risposta
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Documentazione
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Politica sulla Riservatezza
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3049,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vByte al secondo:
+
+ Incoming transactions
+ Transazioni in arrivo
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Il backend si sta sincronizzando
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3076,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3090,11 +2708,11 @@
Non confermate
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3104,60 +2722,109 @@
Dimensione mempool
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- blocchi
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- blocco
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Minato
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Blocchi
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3165,31 +2832,56 @@
Grafici
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
Vista TV
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Documentazione
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Intervallo della commissione
@@ -3199,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Commissioni totali
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Prossimo blocco
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Pila di blocchi mempool
@@ -3237,7 +2912,7 @@
Range
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3245,33 +2920,307 @@
Somma
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Sconosciuto
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Identificato dall'indirizzo di pagamento: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Identificato dal tag coinbase: ' '
+
+ Latest blocks
+ Ultimi blocchi
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3286,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Hex di Transazione
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3304,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, altezza del blocco, hash o indirizzo
@@ -3327,7 +3344,7 @@
Sponsor
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3340,7 +3357,7 @@
Richiedi una fattura
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3349,7 +3366,7 @@
In attesa della transazione...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3358,7 +3375,7 @@
Donazione confermata!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3367,7 +3384,7 @@
Grazie!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3376,7 +3393,7 @@
Mempool in vByte (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3385,7 +3402,7 @@
Filtro
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3394,7 +3411,7 @@
Invertire
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3403,7 +3420,7 @@
vByte transati al secondo (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3622,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Confermata
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Vista per la prima volta
@@ -3715,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Dimensione
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Peso
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Locktime
@@ -3772,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3797,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3806,7 +3797,7 @@
(Bitcoin Appena Generati)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3815,7 +3806,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3824,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3834,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3844,7 +3835,7 @@
Testimone
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3853,16 +3844,24 @@
Script di riscatto P2SH
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
Script testimone P2WSH
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3871,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3880,7 +3879,7 @@
Script output precedente
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3889,29 +3888,16 @@
Tipo di output precedente
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Carica tutto
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out a
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3920,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3930,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- dati
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Questa transazione ha risparmiato % sulle commissioni utilizzando SegWit-Bech32 nativo
@@ -4095,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Ultimi blocchi
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Ultime transazioni
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4135,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4144,7 +4089,7 @@
Commissione
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4153,7 +4098,7 @@
Espandi
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4162,7 +4107,7 @@
Comprimi
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4171,7 +4116,7 @@
Commissione minima
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4181,7 +4126,7 @@
Eliminazione
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4191,7 +4136,7 @@
Memoria in uso
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4201,75 +4146,95 @@
L-BTC in circolazione
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Transazioni in arrivo
+
+ API service
+ Servizio API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Aggiustamento della Difficoltà
+
+ Endpoint
+ Endpoint
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Rimanente
+
+ Description
+ Descrizione
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Stima
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Push predefinito: action: 'want', data: ['blocks', ...] per esprimere cosa vuoi spingere. Disponibile: blocks , mempool-blocks , live-2h-chart , and stats . Spingi transazioni collegate all'indirizzo: 'track-address': '3PbJ...bF9B' per ricevere tutte le nuove transazioni contenenti quell'indirizzo come input o output. Restituisce un array di transazioni. address-transactions per nuove transazioni di mempool e block-transactions per le nuove transazioni confermate nel blocco.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Precedente
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Periodo Attuale
+
+ Code Example
+ Esempio di Codice
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Installa Pacchetto
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Risposta
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf
index 9cf5ae112..eaf53ed86 100644
--- a/frontend/src/locale/messages.ja.xlf
+++ b/frontend/src/locale/messages.ja.xlf
@@ -5,16 +5,15 @@
Close
閉じる
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- 枚のスライドのうちの 枚目
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
前
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
次
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
月を選択
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
年を選択
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
前月
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
来月
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
時間
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
分
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
時間をインクリメント
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
時間をデクリメント
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
分をインクリメント
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
分をデクリメント
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
秒
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
秒をインクリメント
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
秒をデクリメント
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
閉じる
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- 登録アセット
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- アセット検索
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- クリアー
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- アセット名
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- ティッカー
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- 発行者ドメイン名
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- アセットID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- アセットデータの読み込み中にエラーが発生しました。
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- アセット
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
タイムスタンプ
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- すべてを表示»
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
利用規約
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ プライバシー・ポリシー
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
買い申し込み
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ 承認済み
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
アセット上場手数料
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- ビットコインコミュニティーのために、新興トランザクション手数料市場に中心するメモリープールとブロックチェーンエキスプローラを開発しています。広告、アルトコイン、第三者のトラッカーは含まれていません。
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- 企業のスポンサー 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- コミュニティーのスポンサー❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
スポンサーになる❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
https://mempool.space/sponsor に移動して、スポンサーになれます
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- コミュニティーの統合
+
+ Enterprise Sponsors 🚀
+ 企業のスポンサー 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ コミュニティーのスポンサー❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
コミュニティーの提携
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
プロジェクト貢献者
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
プロジェクトメンバー
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
プロジェクトメンテナー
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
このアプリについて
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig of
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- ライトニング
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- リキッド
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- このアドレスのトランザクション数がElectrumサーバーの制限を超えています 代わりに、公式のMempoolWebサイトでこのアドレスを表示することを検討してください。
+
+ 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
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
- 名
+ アセット名
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
ペグイン
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
ペグアウト
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
バーン額
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
流通貨幣額
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
アセットデータを読み込み中にエラーが発生しました。
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
アセット:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ アセット
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ アセット検索
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ クリアー
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ ティッカー
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ 発行者ドメイン名
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ アセットID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ アセットデータの読み込み中にエラーが発生しました。
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
オフライン
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
ダッシュボード
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
統計
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
ドキュメンテーション
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ サイズ
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ 重み
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
次のブロック
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- タイムスタンプ
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- サイズ
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- 重み
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
料金の中央値
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
合計料金
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
補助金+手数料:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
マイナー
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
ビット
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
マークル・ルート
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
難易度
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
ノンス
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
ブロックヘッダーの16進値
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
詳細
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
ブロックデータを読み込み中にエラーが発生しました。
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
ブロック :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ 採掘された
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
コピー されました!
@@ -2164,850 +2503,126 @@
15
-
- API service
- APIサービス
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- エンドポイント
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- 記述
+
+ Difficulty Adjustment
+ 難易度調整
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ 残り
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- 難易度調節の詳細を返す。
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- ベース通貨に対して利用可能な通貨のリストを提供します。
+
+ Estimate
+ 推定
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- 特定市場に対するオープン・オファー価格のリストを提供します。
+
+ Previous
+ 以前
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- 特定市場に対するhi/low/open/closeデータを提供します。ローソク足チャートの作成に利用できます。
+
+ Current Period
+ 当期
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- 利用可能な市場のリストを提供します。
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- 特定市場に対するオープン・オファー詳細のリストを提供します。
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- 特定市場の、それとも全市場の24時間価格ティッカーを提供します
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- 特定市場で済まされたトレードのリストを提供します。
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- ベース通貨に対して特定市場の、それとも全市場の定期的貿易量データを提供します。
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- すべてのBisqトランザクションに関する統計を返す。
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- あるアドレスに関する詳細を返す。入手可能フィールド: address 、 chain_stats 、そして mempool_stats 。各 chain,mempool _statsには tx_count 、 funded_txo_count 、 funded_txo_sum 、 spent_txo_count 、そして spent_txo_sum を含めるオブジェクトがあります。
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- 最新から順にソートされ特定したアドレス/スクリプトハッシュのトランザクション歴史を得る。50つのmempoolトランザクションまで、そして最初の25つの承認されたトランザクションは返されます。追加の承認されたトランザクションを求めたい場合は :last_seen_txid を利用できます(下記参照)。
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- 最新から順にソートされ特定したアドレス/スクリプトハッシュの承認されたトランザクション歴史を得る。ページ当たり25つのトランザクションは返されます。追加のトランザクション歴史を求めたい場合は先行クエリーの最後のtxidを特定できます。
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- 特定したアドレス/スクリプトハッシュの未承認トランザクション歴史を得る。50つのトランザクションは返されます(ページングはありません)。
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- あるアドレス/スクリプトハッシュと関係している未使用のトランザクションアウトプットのリストを得る。入手可能フィールド: txid 、 vout 、 value 、そして status (ファンディングtxの状態を含め)。 value フィールドの代わりに valuecommitment が表示される可能性があり、以下の追加フィールドも表示される可能性があります: asset / assetcommitment 、 nonce / noncecommitment 、 surjection_proof 、そして range_proof 。
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- リキッドアセットに関する情報を返す
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- 特定したリキッドアセットと関係しているトランザクションを返す。ネットワークのネイティブアセットの場合、ペグイン、ペグアウト、そしてバーントランザクションのリストを返す。ユーザ発行アセットの場合、発行、再発行、そしてバーントランザクションのリストを返す。このアセットの移転に関する標準的なトランザクションは返されません。
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- 特定したアセットの現在総供給量を得る。ネイティブアセット(L-BTC)の場合は以下のように計算されます: [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount。発行されたアセットの場合は以下のように計算されます: [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount。ブラインド発行を利用するアセットには入手不能です。/decimalが特定される場合、供給はアセットの可分性に従って小数で返されます。さもなければ基本単位で返されます。
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- あるブロックに関する詳細を返す。入手可能フィールド: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , そして previousblockhash 。
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- 16進エンコードされたブロックヘッダーを返す。
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- :height 高さにあるブロックのハッシュを返す。
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- バイナリ形式で生ブロックの表現を返す。
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- ブロックの承認状態を返す。入手可能フィールド: in_best_chain (ブール値、孤立ブロックの場合は偽), next_best (次のブロックのハッシュ、ベストチェーンに入ってるブロックのみの場合に入手可能)。
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- 最新ブロックの高さを返す。
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- 最新ブロックのハッシュを返す。
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- 特定されたブロックに入ってる、 :index というインデックスにあるトランザクションを返す。
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- ブロック内すべてのtxidのリストを返す。
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- ブロックに入ってるトランザクションのリストを返す( start_index からはじめる25つまでのトランザクション)。ここに返されるトランザクションは共通ブロックに入ってる、そして同じ承認状態を持っているため、 status のフィールドを含みません。
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- てっぺんから、それとも指定した高さ :start_height からの最新10つのブロックを返す。
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- 予想ブロックとして現在のmempoolを返す。
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- 新トランザクションの現在提案手数料を返す。
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- 現在のmempoolバックログ統計を返す。
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- mempool内txidの全リストを配列として取得する。txidは順序不同の状態であり、bitcoindと一致しません。
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- 最後の10つメモリプールに入ったトランザクションのリストを得る。各トランザクションオブジェクトは以下のフィールドを盛り込む簡単化概観データを含みます: txid 、 fee 、 vsize 、そして value 。
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- あるトランザクションのAncestorを返し、そしてdescendentの最良手数料を返す。
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- あるトランザクションに関する詳細を返す。入手可能フィールド: txid , version , locktime , size , weight , fee , vin , vout , そして status 。
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- 16進値でシリアルナンバー付きトランザクションを返す。
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- bitcoindのmerkelblock フォーマットを利用して、トランザクションのマーケルinclusion proofを返す。
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Electrumのblockchain.transaction.get_merkleフォーマット を利用して、トランザクションのマーケルinclusion proofを返す。
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- トランザクション・アウトプットの使用状態を返す。入手可能フィールド: spent (ブール値), txid (任意), vin (任意), そして status (任意, 支払いtxの状態)。
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- 全てのトランザクション・アウトプットの使用状態を返す。
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- バイナリー・データとしてトランザクションを返す。
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- ブロックの承認状態を返す。入手可能フィールド: confirmed (ブール値), block_height (任意)、そして block_hash (任意)。
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- :indexから順に最新のBisqトランザクションの:lengthを返す。
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- ネットワークに生トランザクションを送信する。リクエスト本文に、トランザクションを16進形式で提供するはずです。成功の場合は txid が返されます。
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- デフォルト・プッシュ: 行動: 'want', データ: ['ブロック', ...] プッシュしたいことを表現するために . 利用可能: blocks 、 mempool-blocks 、 live-2h-chart と stats 。 このアドレスと関係するプッシュトランザクション: 'track-address': '3PbJ...bF9B' インプットまたはアウトプットとしてそのアドレスを含む新トランザクションを得るために。トランザクションの配列を返す。 新しいメモリプールトランザクションの場合は address-transactions , そして新しいブロック承認済みトランザクションの場合は block-transactions 。
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- コード例
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- インストールパッケージ
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- 応答
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- ドキュメンテーション
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- プライバシー・ポリシー
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vByte毎秒:
+
+ Incoming transactions
+ 着信トランザクション
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
バックエンド同期中
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
未承認
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
Mempoolサイズ
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- ブロック
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- ブロック
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- 採掘された
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- ブロック
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
グラフ
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
テレビ
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ ドキュメンテーション
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
料金スパン
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- 合計料金
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- 次のブロック
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
つmempoolブロックのスタック
@@ -3236,7 +2912,7 @@
範囲
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
額
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- 未知
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- 支払いアドレスで識別された: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- coinbaseタグで識別された: ' '
+
+ Latest blocks
+ 最新のブロック
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- トランザクションの16進値
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, アドレス, ブロックハッシュなど
@@ -3326,7 +3344,7 @@
スポンサー
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
請求書を依頼する
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
トランザクションを待ち...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
寄付が確定しました!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
ありがとうございました!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
vByte単位のMempool(サトシ/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
フィルター
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
反転
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
トランザクションvByte毎秒(vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- 承認済み
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
最初に見た
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- サイズ
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- 重み
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
ロックタイム
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
サトシ
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
コインベース
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(新しく生成されたコイン)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
ペグイン
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
ウィットネス
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
P2SH引き換えスクリプト
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSHウィットネススクリプト
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
前の出力スクリプト
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
以前の出力タイプ
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- すべてをロード
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
へのペグアウト
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- データ
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- サトシ
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
このトランザクションでは、ネイティブのSegWit-Bech32を使用することで、手数料を %節約できました。
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- 最新のブロック
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
最新のトランザクション
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
米ドル
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
手数料
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
展開
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
折りたたみ
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
最低料金
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
削除中
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
メモリ使用量
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
流通しているL-BTC
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- 着信トランザクション
+
+ API service
+ APIサービス
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- 難易度調整
+
+ Endpoint
+ エンドポイント
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- 残り
+
+ Description
+ 記述
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- 推定
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ デフォルト・プッシュ: 行動: 'want', データ: ['ブロック', ...] プッシュしたいことを表現するために . 利用可能: blocks 、 mempool-blocks 、 live-2h-chart と stats 。 このアドレスと関係するプッシュトランザクション: 'track-address': '3PbJ...bF9B' インプットまたはアウトプットとしてそのアドレスを含む新トランザクションを得るために。トランザクションの配列を返す。 新しいメモリプールトランザクションの場合は address-transactions , そして新しいブロック承認済みトランザクションの場合は block-transactions 。
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- 以前
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- 当期
+
+ Code Example
+ コード例
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ インストールパッケージ
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ 応答
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf
index f32fe5f88..fe3e7df1c 100644
--- a/frontend/src/locale/messages.ka.xlf
+++ b/frontend/src/locale/messages.ka.xlf
@@ -5,16 +5,15 @@
Close
დახურვა
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- სლაიდი მეორის
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
წინა
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
შემდეგი
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
აირჩიეთ თვე
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
აირჩიეთ წელი
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
წინა თვე
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
შემდეგი თვე
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
სთ
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
საათი
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
თვე
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
წუთის
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
ზრდადი საათები
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
კლებადი საათები
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
ზრდადი წუთები
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
კლებადი წუთები
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
წმ
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
წამები
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
ზრდადი წამები
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
კლებადი წამები
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
დახურვა
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- დარეგისტრირებული ქოინები
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- ქოინების მოძებვნა
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- წაშლა
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- სახელი
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- ნიშანი
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- გამომცემის მისამართი
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ქოინის ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- ქოინების მონაცემების მოძებვნისას მოხდა შეცდომა.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- აქტივები
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
დროის ნიშნული
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- ყველას ნახვა »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Მომსახურების პირობები
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Კონფიდენციალურობის პოლიტიკა
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
ყიდვის შემოთავაზება
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ დადასტურებული
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
ლისტინგის ფასი
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- ვაწყობთ mempool ის და ბლოქჩეინის ექსპლორერს ბიტკოინის ეკოსისტემისთვის, რომელიც ფოკუსირებულია ტრანსაქციების საკომისიოზე და მრავალშრიან ეკოსისტემაზე, რეკლამის, ალტკოინების და დამატებითი სათვალთვალო ტრეკერების გარეშე.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- კორპორატიული სპონსორები
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- კერძო სპონსორები ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
გახდი სპონსორი ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
გადასვლა https://mempool.space/sponsor შემოწირვის გასაკეთებლად
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- ინტეგრაციები
+
+ Enterprise Sponsors 🚀
+ კორპორატიული სპონსორები
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ კერძო სპონსორები ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
ალიანსი
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
მოხალისეები
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
პროექტის წევრები
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
პროექტის შემქმნელები
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
ჩვენს შესახებ
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig of
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- ტრანსაქციების რაოდენობა ამ მისამართზე აჭარბებს Electrum სერვერის ლიმიტს ნახეთ ტრანსაქცია 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
სახელი
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
მიბმული
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
განცალკევებული
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
დამწვარი რაოდენობა
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
ცირკულირებული რაოდენობა
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
აქტივის მონაცემების მოძებვნისას მოხდა შეცდომა.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
ასეტი:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ აქტივები
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ ქოინების მოძებვნა
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ წაშლა
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ ნიშანი
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ გამომცემის მისამართი
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ქოინის ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ ქოინების მონაცემების მოძებვნისას მოხდა შეცდომა.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
ოფლაინ
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
დაფა
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
სტატისტიკა
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Docs
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ ზომა
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ წონა
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
შემდეგი ბლოკი
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- დროის ნიშნული
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- ზომა
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- წონა
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
საშუალო საკომისიო
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
ჯამში საკომისიო
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
სუბსიდია + საკომისიო:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
მაინერი
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
სირთულე
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Block Header Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
დეტალები
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
შეცდომა მონაცემების მოძებვნაზე
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
ბლოკი :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ მოპოვებული
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ ტრანზაქცია
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
დაკოპირდა
@@ -2164,850 +2503,126 @@
15
-
- API service
- API service
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- დასასრული
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- აღწერა
+
+ Difficulty Adjustment
+ სირთულე
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ დარჩა
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- იძლევა ინფორმაციას სირთულის რეგულირებაზე
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Provides list of available currencies for a given base currency.
+
+ Estimate
+ დაახლოებით
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Provides list of open offer prices for a single market.
+
+ Previous
+ წინა
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
+
+ Current Period
+ ეს პერიოდი
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Provides list of available markets.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Provides list of open offer details for a single market.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Provides 24 hour price ticker for single market or all markets
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Provides list of completed trades for a single market.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Provides periodic volume data in terms of base currency for one or all markets.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Returns statistics about all Bisq transactions.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Returns information about a Liquid asset.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Returns the hex-encoded block header.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Returns the hash of the block currently at :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Returns the raw block representation in binary.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Returns the height of the last block.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Returns the hash of the last block.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Returns the transaction at index :index within the specified block.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Returns a list of all txids in the block.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Returns current mempool as projected blocks.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Returns our currently suggested fees for new transactions.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- აბრუნებს მიმდინარე mempool-ის backlog სტატისტიკას
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Returns the ancestors and the best descendant fees for a transaction.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Returns a transaction serialized as hex.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Returns the spending status of all transaction outputs.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Returns a transaction as binary data.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Returns :length of latest Bisq transactions, starting from :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- კოდის მაგალითი
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- საინსტალაციო პაკეტი
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- პასუხი
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- დოკუმენტაცია
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Კონფიდენციალურობის პოლიტიკა
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- ტრანსაქცია vBytes წამში:
+
+ Incoming transactions
+ მიმდინარე ტრანზაქციები
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Backend სინქრონდება
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
დაუდასტურებული
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
მემპულის ზომა
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- ბლოკები
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- ბლოკი
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- მოპოვებული
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- ბლოკი
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
დიაგრამები
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
სატელევიზიო ხედვა
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ დოკუმენტაცია
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
საკომისიოს დიაპაზონი
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- ჯამში საკომისიო
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- შემდეგი ბლოკი
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
mempool ის ბლოკების კრება
@@ -3236,7 +2912,7 @@
ზღვარი
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
ჯამი
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- უცნობი
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Identified by payout address: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Identified by coinbase tag: ' '
+
+ Latest blocks
+ ბოლო ბლოკები
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Transaction Hex
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, ბლოკის სიმაღლე, ჰაში ან მისამართი
@@ -3326,7 +3344,7 @@
სპონსორები
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
მოითხოვეთ ინვოისი
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
ტრანსაქციის მოლოდინში...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
გადარიცხვა დადასტურებულია!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
დიდი მადლობა!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
მემპული vBytes (სატ/vByte) მიხედვით
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
გაფილტვრა
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
შებრუნება
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
ტრანზაქცია vBytes წამში (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- დადასტურებული
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
პირველი
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- ზომა
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- წონა
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Locktime
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
სატ
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(ახალი ქოინები)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
მიბმული
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
P2SH redeem script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH witness script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
Previous output script
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
Previous output type
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- ყველა ჩატვირთვა
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out to
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- მონაცემები
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- სატ
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
ტრანსაქციამ შეძლო % საკომისიოს ეკონომია, native SegWit-Bech32 ის გამოყენებით
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- ბოლო ბლოკები
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- ტრანზაქცია
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
ბოლო ტრანზაქციები
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
დოლარი
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
საკომისიო
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
მეტის ნახვა
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
დახურვა
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
მინ. საკომისიო
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
წაშლა
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
მეხსიერება
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
L-BTC ბრუნვაში
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- მიმდინარე ტრანზაქციები
+
+ API service
+ API service
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- სირთულე
+
+ Endpoint
+ დასასრული
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- დარჩა
+
+ Description
+ აღწერა
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- დაახლოებით
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- წინა
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- ეს პერიოდი
+
+ Code Example
+ კოდის მაგალითი
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ საინსტალაციო პაკეტი
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ პასუხი
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf
index 19e4824a3..2f6408f2e 100644
--- a/frontend/src/locale/messages.ko.xlf
+++ b/frontend/src/locale/messages.ko.xlf
@@ -5,16 +5,15 @@
Close
닫기
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- 슬라이드 /
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
이전
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
다음
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
달/월 선택하기
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
연/년 선택하기
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
지난달
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
다음 달
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
시간
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
분
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
증가한 시간
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
감소한 시간
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
증가한 분
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
감소한 분
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
초
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
증가한 초
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
감소한 초
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
닫기
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- 등록 된 자산
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- 자산 검색
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- 지우기
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- 이름
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- 시세 표시표
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- 발급자 도메인
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- 자산 ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- 자산 데이터 로딩 실패
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- 자산
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
타임스탬프
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- 모두 보기 »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
이용약관
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ 개인정보처리방침
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
오퍼 구매하기
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ 컨펌됨
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
자산 상장 수수료
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- 비트코인 커뮤니티를 위해 멤풀과 비트코인 익스플로어를 만들었습니다. 트랜잭션 비용 마켓과 멀티 레이어 체계를 광고, 알트코인, 그리고 트래커 없이 이용하실 수 있습니다.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- 기업 스폰서🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- 커뮤니티 스폰서❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
후원하기 ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
후원은 https://mempool.space/sponsor 을 참조하시길 바랍니다
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- 커뮤니티 통합
+
+ Enterprise Sponsors 🚀
+ 기업 스폰서🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ 커뮤니티 스폰서❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
커뮤니티 연합
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
프로젝트 참여자 목록
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
프로젝트 멤버들
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
프로젝트 관리자 목록
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
대하여
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- 다중서명 /
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- 라이트닝
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- 이 주소의 트랜잭션 수가 Electrum 서버 제한 을 초과합니다. 멤풀 웹사이트에서 이 주소를 확인하시는 것을 추천합니다.
+
+ 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
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
이름
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
페그인 됨
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
페그아웃 됨
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
소각량
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
유통량
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
자산 데이터를 로딩 실패
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
자산:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ 자산
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ 자산 검색
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ 지우기
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ 시세 표시표
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ 발급자 도메인
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ 자산 ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ 자산 데이터 로딩 실패
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
오프라인
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
대시보드
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
통계
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
문서들
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ 사이즈
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ 무게
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
다음 블록
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- 타임스탬프
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- 사이즈
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- 무게
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
평균 수수료
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
총 수수료
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
채굴된 양 + 수수료:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
채굴자
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
비트
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
머클 루트
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
난이도
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
임시값
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
블록헤더 16진수
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
자세히
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
블록 데이터 불러오기 실패
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
블록 :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ 채굴됨
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ 트랜잭션
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
복사됨!
@@ -2164,842 +2503,126 @@
15
-
- API service
- API 서비스
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- 엔드포인트
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- 설명
+
+ Difficulty Adjustment
+ 난이도 조정
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ 남은
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- 난이도 조정에 대한 정보를 반환.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- 주어진 기본 통화에 대해 사용 가능한 통화 목록을 제공합니다.
+
+ Estimate
+ 추정
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- 하나의 시장에 대한 매수 주문 목록을 제공합니다.
+
+ Previous
+ 이전
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- 주어진 시장에 대한 고가/저가/시가/종가 데이터를 제공합니다. 이는 캔들스틱 차트를 생성하는데 사용할 수 있습니다.
+
+ Current Period
+ 현재 기간
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- 사용 가능한 시장 목록을 제공합니다.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- 하나의 시장에 대한 매도 주문 목록을 제공합니다.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- 24시간 가격 티커를 하나 또는 모든 시장에 대해 제공합니다
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- 하나의 시장에 대해 완료된 거래 목록을 제공합니다.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- 하나 또는 모든 시장에 대한 주기적인 볼륨 데이터를 기본 통화 측면에서 제공합니다.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- 모든 Bisq 트랜잭션에 대한 통계를 반환
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- 주소에 대한 세부 정보를 반환합니다. 제공되는 세부 정보: 주소 , 블록체인 정보 및 멤풀 정보 . 블록체인과 멤풀 정보는 각각 tx_count funded_txo_count , funded_txo_sum , spent_txo_count 및 spent_txo_sum 의 정보를 가진 객체를 포함하고 있습니다.
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- 지정된 주소/스크립트 해시에 대한 트랜잭션 내역을 최신 항목부터 정렬하여 가져옵니다. 최대 50개의 멤풀 트랜잭션과 첫 25개의 컨펌된 트랜잭션을 반환합니다. :last_seen_txid 를 사용하여 더 많은 확인된 거래를 요청할 수 있습니다 (아래 참조).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- 지정된 주소 / 스크립트 해시에 대한 확인 된 거래 내역을 최신으로 정렬하여 가져옵니다. 페이지 당 25 개의 트랜잭션을 반환합니다. 이전 쿼리에서 본 마지막 txid를 지정하여 더 많은 것을 요청할 수 있습니다.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- 지정된 주소 / 스크립트 해시에 대한 미확인 거래 내역을 가져옵니다. 최대 50 개의 트랜잭션을 반환합니다 (페이징 없음).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Liquid 자산에 대한 정보를 반환
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- 지정된 Liquid 자산과 관련된 거래를 반환합니다. 네트워크의 기본 자산을 위해 페그 인, 페그 아웃 및 소각 트랜잭션 목록을 반환합니다. 사용자 발행 자산의 경우 발행, 재발행 및 소각 트랜잭션 목록을 반환합니다. 이 자산을 양도하는 일반 거래는 포함되지 않습니다.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- 지정된 자산의 현재 총 공급량을 가져옵니다. 네이티브 자산 (L-BTC)의 경우 [chain, mempool] _stats.peg_in_amount-
-[chain, mempool] _stats.peg_out_amount-
-[chain, mempool] _stats.burned_amount로 계산됩니다.
-발행 된 자산의 경우
-[chain, mempool] _stats.issued_amount-
-[chain, mempool] _stats.burned_amount로 계산됩니다.
-블라인드 발행이있는 자산에는 사용할 수 없습니다. 만약 decimal이 지정된 경우 자산의 분할 가능성에 따라 소수로 공급을 반환합니다. 그렇지 않으면 기본 단위로 반환됩니다.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- 16진수로 부호화된 블록헤더를 반환.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Raw 블록을 2진수로 반환
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- 마지막 블록의 높이를 반환
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- 마지막 블록의 해시를 반환
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- 블록의 모든 txid 목록을 반환합니다.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- 현재의 mempool을 projected 블록으로 반환합니다.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- 새로운 거래에 대한 수수료를 반환합니다.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- 현재 멤풀 백로그 통계를 반환
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- 에러 발생시 mempool에있는 txid의 전체 목록을 가져옵니다. txid의 순서는 임의적이며 bitcoind와 일치하지 않습니다.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- 거래에 대해 ancestors 와 최하 수수료를 반환합니다.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- 트랜잭션에 대한 세부 정보를 반환합니다. 사용 가능한 필드 : txid , 버전 , 잠금 시간 , 크기 , 무게 , 수수료 , vin , vout 및 상태 .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- 16진수로 직렬화된 트랜잭션을 반환
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- 모든 트랜잭션 아웃풋의 지출 상황을 반환합니다.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- 트랜잭션을 이진수로 반환
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- 반환하는 것: 가장 최신 Bisq 트랜잭션 length: index에서 시작
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- 코드 예시
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- 패키지 설치하기
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- 응답
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- 문서
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- 개인정보처리방침
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3040,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- 초당 트랜잭션 vBytes
+
+ Incoming transactions
+ 들어오는 트랜잭션
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
백엔드 동기화 중입니다
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3067,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3081,11 +2708,11 @@
컨펌되지 않음
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3095,60 +2722,109 @@
멤풀 사이즈
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- 블록
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- 블록
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- 채굴됨
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- 블록
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3156,31 +2832,56 @@
그래프
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV 뷰
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ 문서
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
수수료 범위
@@ -3190,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- 총 수수료
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- 다음 블록
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
멤풀 블록 스택 개
@@ -3228,7 +2912,7 @@
범위
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3236,33 +2920,307 @@
총액수
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- 알 수 없음
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- 지불 주소로 식별: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- 코인베이스 태그로 식별: ' '
+
+ Latest blocks
+ 최신 블록
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3277,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- 트랜잭션 16진수
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3295,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
트랜잭션 ID, 블록 높이, 해시, 또는 주소 입력
@@ -3318,7 +3344,7 @@
스폰서
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3331,7 +3357,7 @@
인보이스 요청하기
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3340,7 +3366,7 @@
트랜잭션을 기다리는 중...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3349,7 +3375,7 @@
후원이 완료되었습니다!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3358,7 +3384,7 @@
감사합니다!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3367,7 +3393,7 @@
Mempool by vBytes (sat.vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3376,7 +3402,7 @@
필터
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3385,7 +3411,7 @@
뒤집기
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3394,7 +3420,7 @@
초당 트랜잭션 vByte (vB / s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3613,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- 컨펌됨
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
처음으로 감지됨
@@ -3706,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- 크기
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- 무게
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
잠금 시간
@@ -3763,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
사토시
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3788,7 +3788,7 @@
코인베이스
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3797,7 +3797,7 @@
(새로 채굴된 코인들)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3806,7 +3806,7 @@
페그 인
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3815,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3825,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3835,7 +3835,7 @@
증인 (디지털 서명)
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3844,16 +3844,24 @@
P2SH 사용 스크립트
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH 증인 스크립트
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3862,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3871,7 +3879,7 @@
이전 아웃풋 스크립트
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3880,29 +3888,16 @@
이전 아웃풋 유형
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- 모두 불러오기
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
로 페그아웃
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3911,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3921,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- 데이터
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- 사토시
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
이 트랜잭션은 native SegWit-Bech32를 사용하여 수수료를 % 절약했습니다
@@ -4086,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- 최신 블록
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- 트랜잭션
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
최신 트랜잭션
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4126,7 +4080,7 @@
달러
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4135,7 +4089,7 @@
수수료
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4144,7 +4098,7 @@
자세히
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4153,7 +4107,7 @@
간단히
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4162,7 +4116,7 @@
최소 수수료
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4172,7 +4126,7 @@
퍼징
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4182,7 +4136,7 @@
멤풀 메모리 사용량
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4192,75 +4146,94 @@
유통 중인 L-BTC
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- 들어오는 트랜잭션
+
+ API service
+ API 서비스
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- 난이도 조정
+
+ Endpoint
+ 엔드포인트
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- 남은
+
+ Description
+ 설명
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- 추정
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- 이전
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- 현재 기간
+
+ Code Example
+ 코드 예시
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ 패키지 설치하기
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ 응답
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.mk.xlf b/frontend/src/locale/messages.mk.xlf
index 10198307a..e66a0fe4b 100644
--- a/frontend/src/locale/messages.mk.xlf
+++ b/frontend/src/locale/messages.mk.xlf
@@ -5,16 +5,15 @@
Close
Затвори
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Слајд од
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Претходен
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Наредно
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Избери месец
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Избери година
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Претходен месец
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Нареден месец
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
ЧЧ
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Часови
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
ММ
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Минути
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Зголеми часови
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Намали часови
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Зголеми минути
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Намали минути
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
СС
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Секунди
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Зголеми секунди
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Намали секунди
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Затвори
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Регистирани средства
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Пребарувај средства
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Избриши
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Име
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Тикер
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Емитент
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID на средството
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Грешка во вчитувањето на податоците за средствата.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Средства
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Временска ознака
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Повеќе »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Услови на Користење
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Полиса за Приватност
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Куповни Понуди
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Потврдено
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Провизија за објава
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- е mempool и blockchain прелистувач за Bitcoin заедницата, со специјален фокус на минимизриање на провизиите за трансакциите и целиот повеќе слоен екосистем, без никакви реклами, алтернативни валути или тракери од трети страни.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Корпоративни Спонзори 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Спонзори од Заедницата ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Стани спонзор ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Оди на https://mempool.space/sponsor за спонзорства
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Интеграции од заедницата
+
+ Enterprise Sponsors 🚀
+ Корпоративни Спонзори 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Спонзори од Заедницата ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Соработка со Заедницата
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Контрибутори
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Членови на проектот
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Одржувачи на проектот
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
За нас
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig од
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Бројот на трансакции на оваа адреса го надминува лимитот на Electrum серверот Разгледај ја оваа адреса на официјалната 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Име
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Уништен износ
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Во оптег
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Грешка во вчитување на податоци за средството.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Средство:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Средства
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Пребарувај средства
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Избриши
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Тикер
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Емитент
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID на средството
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Грешка во вчитувањето на податоците за средствата.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Офлајн
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Почетна
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Статистика
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Документација
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Големина
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Тежина
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Нареден Блок
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Временска ознака
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Големина
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Тежина
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Средна провизија
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Вкупно провизија
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Награда + провизија:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Мајнер
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Битови
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Сложеност
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Хекс од заглавието на блокот
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Детали
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Грешка во вчитување на податоците за блокот.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Блок :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Пронајден
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ Трансакции
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Копирано!
@@ -2164,851 +2503,126 @@
15
-
- API service
- API сервис
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Endpoint
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Опис
+
+ Difficulty Adjustment
+ Корекција на тежината на копање
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Преостануваат
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Враќа детали за корекцијата во тежината на копање.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Обезбедува листа од достапни валути за дадена основна валута.
+
+ Estimate
+ Проценка
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Обезбедува листа од отворени ценовни понуди за одреден маркет.
+
+ Previous
+ Претходно
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Обезбедува hi/low/open/close податоци за одреден маркет кои можат да бидат искористени за генерирање на берзански графикон.
+
+ Current Period
+ Моментално
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Обезбедува листа од сите достапни маркети.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Обезбедува детална листа од сите отворени понуди за одреден маркет.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Обезбедува тикер за 24 часовна цена за одреден или сите маркети.
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Обезбедува листа од извршени тргувања за одреден маркет.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Обезбедува периодични податоци за волуменот во однос на основната валута за еден или сите маркети.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Враќа статистики за сите Bisq трансакции.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Враќа детали за одредена адреса. Достапни полиња: address , chain_stats , и mempool_stats . chain,mempool _stats секој содржи објект со tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , и spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Ја враќа историјата на трансакции за одредена адреса или scripthash, подредени по најновите.
-Враќа до 50 mempool трансакции плус првите 25 потврдени трансакции. За повеќе потврдени трансакции користи го :last_seen_txid (види подолу).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Земи ги последните потврдени трансакции за одредена адреса/scripthash, сортирани по најновите. Враќа 25 трансакции по страна. Повеќе можат да бидат побарани со потенцирање на последниот txid.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Земи историја од непотврдени трансакции за одредена адреса/scripthash. Враќа до 50 трансакции (без пагинација).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Земи листа од непотрошени трансакциски излези поврзани со одредена адреса или scripthash. Достапни полиња: txid , vout , value , и status (со статусот на влезната трансакција). Исто има и valuecommitment поле што може да се покаже на местото на value , вклучително и следните додатни полиња: asset / assetcommitment , nonce / noncecommitment , surjection_proof , и range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Враќа информација за средство од Liquid мрежата.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Враќа трансакции поврзани со посоченото Liquid средство. За основното средство на мрежата, враќа листа од peg in, peg out и ликвидирачките трансакции. За средства создадени од корисници, враќа листата на издавачки, реиздавачки и ликвидирачки трансакции. Не ги вклучува регуларните трансакции околу трансферот на ова стредство.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Враќа детали за блокот. Достапни полиња: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , и previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Го враќа хедерот на блокот во hex формат.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Го враќа хашот на блок со одредена висина :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Го враќа блокот во неговата бинарна форма.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Го враќа конфирмацискиот статус на блокот. Достапни полиња: in_best_chain (boolean, false за неврзани блокови), next_best (хашот на наредниот блок, достапно само за блокови во најдобриот синџир).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Ја враќа висината на последниот блок.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Го враќа хашот на последниот блок.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Ја враќа трансакцијата на индекс :index во наведениот блок.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Враќа листа на сите txids во блокот.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Враќа листа од трансакции во блокот (до 25 трансакции почнувајќи од start_index ). Вратените трансакции немаат status поле, бидејќи сите трансакции го споделуваат истиот блок и конфирмациски статус.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Ги враќа најновите 10 блока почнувајќи од врвот или од некоја зададена висина :start_height
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Го враќа моменталниот mempool како оформени блокови.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Ја враќа нашата препорачлива провизија за нови трансакции.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Враќа моментална статистика за сите непотврдени трансакции во mempool.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Превземи целосна листа од трансакции во mempool-от како низа. Редоследот на трансакциите е случаен и не го рефлектира редоследот во bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Превземи листа од последните 10 трансакции во mempool-от. Секој објект содржи општи податоци, со следните полиња: txid , fee , vsize , и value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Ги враќа претходните и следните најдобри провизии за одредена трансакција.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Враќа детали за трансакцијата. Достапни полиња: txid , version , locktime , size , weight , fee , vin , vout , и status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Ја враќа трансакцијата во hex формат.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Враќа меркл доказ за вклучување на трансакцијата во bitcoind's merkleblock формат.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Враќа меркл доказ за вклучување на трансакцијата во Electrum's blockchain.transaction.get_merkle формат.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Го враќа статусот на трошење на трансакцискиот излез. Достапни полиња: spent (boolean), txid (опционално), vin (опционално), и status (опционално, статус на потрошувачката трансакција).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Го враќа статусот на трошење на сите трансакциски излези.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Ја враќа трансакцијата во бинарен формат.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Го враќа конфирмацискиот статус на трансакцијата. Достапни полиња: confirmed (boolean), block_height (опционално), и block_hash (опционално).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Враќа :length на последните Bisq трансакции, почнувајќи од :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Емитувај трансакција на мрежата. Трансакцијата треба да биде во хексадецимален формат во API барањето. При успешно емитување како резултат ќе биде вратено txid .
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Објавување: action: 'want', data: ['blocks', ...] за да специфираш што да биде објавено. Достапни полиња: blocks , mempool-blocks , live-2h-chart , и stats . Објави трансакции поврзани со адресса: 'track-address': '3PbJ...bF9B' за да ги добиеш сите нови трансакции што ја содржат таа адреса како влез или излез. Враќа низа од транссакции. address-transactions за нови трансакции во mempool-от, и block-transactions за поврдени трансакции во најновиот блок.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Пример за Код
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Инсталациски Пакет
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Одговор
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Документација
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Полиса за Приватност
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3049,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes во секунда:
+
+ Incoming transactions
+ Нови трансакции
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Се синхронизира во позадина
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3076,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3090,11 +2708,11 @@
Непотврдени
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3104,60 +2722,109 @@
Големина на mempool-от
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- блокови
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- блок
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Пронајден
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Блокови
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3165,31 +2832,56 @@
Графици
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV преглед
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Документација
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Оспег на провизии
@@ -3199,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Вкупно провизија
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Следен блок
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Збир од mempool блокови
@@ -3237,7 +2912,7 @@
Опсег
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3245,33 +2920,307 @@
Сума
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Непознато
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Идентификуван по адреса на плаќање: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Идентификуван по таг од ковачницата: ' '
+
+ Latest blocks
+ Последни блокови
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3286,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Хекс на трансакцијата
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3304,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, број на блок, хаш или адреса
@@ -3327,7 +3344,7 @@
Спонзор
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3340,7 +3357,7 @@
Генерирај сметка
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3349,7 +3366,7 @@
Се чека трансакција...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3358,7 +3375,7 @@
Донацијата е потврдена!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3367,7 +3384,7 @@
Ти благодариме!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3376,7 +3393,7 @@
Mempool прикажан по vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3385,7 +3402,7 @@
Филтер
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3394,7 +3411,7 @@
Инвертирај
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3403,7 +3420,7 @@
Трансакциски vBytes во секунда (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3622,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Потврдено
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Пратена
@@ -3715,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Големина
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Тежински единици
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Locktime
@@ -3772,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3797,7 +3788,7 @@
Ковачница
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3806,7 +3797,7 @@
(Ново создадени монети)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3815,7 +3806,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3824,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3834,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3844,7 +3835,7 @@
Сведок
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3853,16 +3844,24 @@
P2SH redeem script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH witness script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3871,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3880,7 +3879,7 @@
Претходни излезни скрипти
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3889,29 +3888,16 @@
Претходен тип на излезот
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Вчитај ги сите
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out кон
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3920,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3930,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- податоци
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Оваа трансакција заштеди % во провизии со користење на SegWit-Bech32
@@ -4095,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Последни блокови
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- Трансакции
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Последни трансакции
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4135,7 +4080,7 @@
во USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4144,7 +4089,7 @@
Провизија
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4153,7 +4098,7 @@
Прошири
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4162,7 +4107,7 @@
Сокриј
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4171,7 +4116,7 @@
Минимум
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4181,7 +4126,7 @@
Отфрлање
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4191,7 +4136,7 @@
Искористена меморија
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4201,75 +4146,95 @@
L-BTC во циркулација
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Нови трансакции
+
+ API service
+ API сервис
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Корекција на тежината на копање
+
+ Endpoint
+ Endpoint
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Преостануваат
+
+ Description
+ Опис
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Проценка
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Објавување: action: 'want', data: ['blocks', ...] за да специфираш што да биде објавено. Достапни полиња: blocks , mempool-blocks , live-2h-chart , и stats . Објави трансакции поврзани со адресса: 'track-address': '3PbJ...bF9B' за да ги добиеш сите нови трансакции што ја содржат таа адреса како влез или излез. Враќа низа од транссакции. address-transactions за нови трансакции во mempool-от, и block-transactions за поврдени трансакции во најновиот блок.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Претходно
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Моментално
+
+ Code Example
+ Пример за Код
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Инсталациски Пакет
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Одговор
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf
index 477ce08f9..6ed1ff8f1 100644
--- a/frontend/src/locale/messages.nb.xlf
+++ b/frontend/src/locale/messages.nb.xlf
@@ -5,16 +5,15 @@
Close
Lukk
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Side av
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Forrige
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Neste
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Velg måned
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Velg år
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Forrige måned
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Neste måned
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
TT
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Timer
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minutter
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Øk timer
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Reduser timer
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Øk minutter
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Reduser minutter
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Sekunder
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Øk sekunder
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Reduser sekunder
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Lukk
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Registrerte ressurser
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Søk ressurs
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Fjern
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Navn
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Utsteder-domene
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- Ressurs-ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Feil ved innlasting av ressursdata.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Ressurser
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Tidspunkt
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Se alt »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Bruksvilkår
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Personvernerklæring
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Kjøp tilbud
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Bekreftet
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Gebyr for notering
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Bygger en mempool- og blokkjede-utforsker for Bitcoin-samfunnet, med fokus på transaksjonsgebyrmarkedet og flerlagsøkosystem, uten reklame, altcoins eller tredjepartstrackere.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Bedriftssponsorer 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Samfunnssponsorer ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Bli en sponsor ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Gå til https://mempool.space/sponsor for å sponse
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Samfunnsintegrasjoner
+
+ Enterprise Sponsors 🚀
+ Bedriftssponsorer 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Samfunnssponsorer ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Samfunnsallianser
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Bidragsytere til prosjektet
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Prosjektmedlemmer
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Prosjektvedlikeholdere
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
Om
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig av
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Antall transaksjoner på denne adressen overskrider Electrum-servergrensen Vurder å se denne adressen på den offisielle Mempool-nettsiden i stedet:
+
+ 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
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Navn
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Pegged inn
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Pegged ut
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Beløp som er brent
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Sirkulerende beløp
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Lasting av ressursdata feilet.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Eiendel:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Ressurser
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Søk ressurs
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Fjern
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Utsteder-domene
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ Ressurs-ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Feil ved innlasting av ressursdata.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Offline
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Dashbord
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Statistikk
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Dokumenter
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Størrelse
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Vekt
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Neste blokk
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Tidspunkt
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Størrelse
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Vekt
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Medianavgift
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Totale avgifter
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Subsidie + avgifter:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Utvinner
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merklerot
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Vanskelighetsgrad
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Blokkheader Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Detaljer
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Lasting av blokkdata feilet.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Blokk :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Utvunnet
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Kopiert!
@@ -2164,850 +2503,126 @@
15
-
- API service
- API-tjeneste
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Endepunkt
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Beskrivelse
+
+ Difficulty Adjustment
+ Vanskelighetsgradjustering
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Gjenstående
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Returnerer detaljer om vanskelighetsgradjustering.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Gir en liste over tilgjengelige valutaer for en gitt basisvaluta.
+
+ Estimate
+ Anslag
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Gir en liste over åpne tilbudspriser for et enkelt marked.
+
+ Previous
+ Forrige
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Gir høy/lav/open/close-data for et gitt marked. Dette kan brukes til å generere et lysestakediagram.
+
+ Current Period
+ Nåværende periode
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Gir en liste over tilgjengelige markeder.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Gir en liste over åpne tilbudsdetaljer for et enkelt marked.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Gir en 24-timers pristicker for ett enkeltmarked eller alle markeder
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Gir en liste over fullførte handler for et enkelt marked.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Gir periodiske volumdata i form av basisvaluta for ett eller alle markeder.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Returnerer statistikk om alle Bisq transaksjoner.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Returnerer detaljer om en adresse. Tilgjengelige felt: adress , chain_stats , og mempool_stats . chain, mempool _stats hver inneholder en gjenstand med tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , og spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Få transaksjonshistorikk for den angitte adressen/scripthash, sortert med nyeste først. Returnerer opptil 50 mempool-transaksjoner pluss de første 25 bekreftede transaksjonene. Du kan be om flere bekreftede transaksjoner ved å bruke :last_seen_txid (se nedenfor).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Gir deg den bekreftede transaksjonshistorien for den spesifiserte adressen/scripthash, sortert med nyeste først. Returnerer 25 transaksjoner per side. Flere kan bli bedt om hvis du spesifiserer den siste txiden som ble sett av det forrige kallet.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Gir deg ubekreftet transaksjonshistorie for den spesifiserte adressen/scripthash. Returnerer opp til 50 transaksjoner (ingen paging).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Få listen over ubrukte transaksjonsutganger knyttet til adressen/scripthashen. Tilgjengelige felt: txid , vout , value og status (med status for finansierings-tx). Det er også ett valuecommitment felt som kan vises i stedet for value , pluss følgende felt: asset / assetcommitment , nonce / noncecommitment , surjection_proof , og range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Returnerer informasjon om en Liquid ressurs.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Returnerer transaksjoner assosiert med den spesifiserte Liquid ressursen. For nettverkets native ressurs, returneres en liste av peg in, peg out, og brenn transaksjoner. For brukerutsdedte ressurser, returneres en liste av utstedelse, gjenutstedelse, og brenn transaksjoner. Inkluderer ikke normale transaksjoner som overfører denne ressursen.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Gir deg den nåværende totale forsyningen for den spesifiserte ressursen. For den native ressursen (L-BTC), er dette kalkulert slik [kjede,mempool]_stats.peg_in_mengde - [kjede,mempool]_stats.peg_out_mengde - [kjede,mempool]_stats.brent_mengde. For utstedte ressurser er det kalkulert slik [kjede,mempool]_stats.utstedt_mengde - [kjede,mempool]_stats.brent_mengde. Ikke tilgjengelig for ressurser med blindet utstedelse. Hvis /decimal er spesifisert, returneres forsyningen som en desimal i henhold til ressursens delbarhet, ellers returneres den i baseenheter.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Returnerer detaljer om en blokk. Tilgjengelige felt: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , og previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Returnerer den hex-enkodede blokkheaderen.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Returnerer hashen til blokken som for øyeblikket er :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Returnerer en blokk i binær.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Returnerer bekreftelsesstatusen til en blokk. Tilgjengelige felt: in_best_chain (boolsk, falsk for foreldreløse blokker), next_best (hashen til neste blokk, bare tilgjengelig for blokker i den beste kjeden).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Returnerer høyden til den siste blokken.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Returnerer hashen til den siste blokken.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Returnerer transaksjonen ved indeks :indeks i den angitte blokken.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Returnerer en liste over alle txider i blokken.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Returnerer en liste over transaksjoner i blokken (opptil 25 transaksjoner som begynner på start_index ). Transaksjoner som returneres her har ikke status -feltet, siden alle transaksjonene deler den samme blokken- og bekreftelsesstatus.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Returnerer de 10 nyeste blokkene som starter ved spissen eller ved :start_height hvis spesifisert.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Returnerer gjeldende mempool som projiserte blokker.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Returnerer den for tiden foreslåtte avgiften for nye transaksjoner.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Returnerer statistikk for nåværende mempool.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Få den komplette listen over txidene i mempool som en matrise. Rekkefølgen på txidene er vilkårlig og samsvarer ikke med bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Få en liste over de 10 siste transaksjonene som har kommet inn i mempoolen. Hvert transaksjon-objekt inneholder en forenklet oversikt, med følgende felt: txid , avgift , vsize , og value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Returnerer forfedrene og de beste etterkommeravgiftene for en transaksjon.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Returnerer detaljer om en transaksjon. Tilgjengelige felt: txid , version , locktime , size , weight , fee , vin , vout , og status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Returnerer en transaksjon serialisert som hex.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Returnerer et merkle-inkluderingsbevis for transaksjonen ved å bruke bitcoinds merkleblock -format.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Returnerer et merkle-inkluderingsbevis for transaksjonen ved å bruke Electrums blockchain.transaction.get_merkle-format.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Returnerer forbruksstatusen til en transaksjonsutgang. Tilgjengelige felt: spent (boolsk), txid (valgfri), vin (valgfri), og status (valgfri, status for spending-tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Returnerer brukt status for alle transakjons-utganger.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Returnerer en transaksjon som binær data.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Returnerer bekreftelsesstatusen for en transaksjon. Tilgjengelige felt: confirmed (boolsk), block_height (valgfri), og block_hash (valgfri)
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Returnerer :length av de siste Bisq transaksjonene, starter fra :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Send en rå transaksjon til nettverket. Transaksjonen skal oppgis som hex i forespørselsteksten. txid blir returnert ved suksess.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Standard push: handling: 'want', data: ['blocks', ...] for å uttrykke hva du vil ha pushet. Tilgjengelig: blocks , mempool-blocks , live-2h-chart , og stats . Push-transaksjoner relatert til adresse: 'track-address': '3PbJ...bF9B' for å motta alle nye transaksjoner som inneholder den adressen som inngang eller utgang. Returnerer en tabell av transaksjoner. adress-transactions for nye mempool-transaksjoner, og block-transactions for nye blokkbekreftede transaksjoner.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Kodeeksempel
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Installer pakke
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Respons
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Dokumentasjon
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Personvernerklæring
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes per sekund:
+
+ Incoming transactions
+ Innkommende transaksjoner
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Backend synkroniserer
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
Ubekreftet
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
Mempool størrelse
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- blokker
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- blokk
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Utvunnet
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Blokker
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
Grafer
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV-modus
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Dokumentasjon
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Avgiftsintervall
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Totale avgifter
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Neste blokk
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Stabel med mempoolblokker
@@ -3236,7 +2912,7 @@
Område
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
Sum
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Ukjent
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Identifisert ved utbetalingsadresse: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Identifisert med coinbase tag: ' '
+
+ Latest blocks
+ Nyeste blokker
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Transaksjon Hex
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, blokkhøyde, hash eller adresse
@@ -3326,7 +3344,7 @@
Sponsor
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
Be om faktura
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
Venter på transaksjon...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
Donasjon bekreftet!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
Tusen takk!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
Mempool i vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
Filter
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
Inverter
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
Transaksjoner per sekund (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Bekreftet
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Først sett
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Størrelse
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Vekt
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Locktime
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(Nygenererte Mynter)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
Peg-inn
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig(ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig(HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
P2SH redeem script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH witness script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
Forrige utgangs-script
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
Tidligere utdatatype
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Last alt
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out til
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Denne transaksjonen sparte % på avgifter ved å bruke native SegWit-Bech32
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Nyeste blokker
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Nyeste transaksjoner
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
Avgift
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
Utvid
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
Slå sammen
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
Minimumsavgift
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
Fjerner
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
Minnebruk
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
L-BTC i omløp
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Innkommende transaksjoner
+
+ API service
+ API-tjeneste
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Vanskelighetsgradjustering
+
+ Endpoint
+ Endepunkt
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Gjenstående
+
+ Description
+ Beskrivelse
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Anslag
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Standard push: handling: 'want', data: ['blocks', ...] for å uttrykke hva du vil ha pushet. Tilgjengelig: blocks , mempool-blocks , live-2h-chart , og stats . Push-transaksjoner relatert til adresse: 'track-address': '3PbJ...bF9B' for å motta alle nye transaksjoner som inneholder den adressen som inngang eller utgang. Returnerer en tabell av transaksjoner. adress-transactions for nye mempool-transaksjoner, og block-transactions for nye blokkbekreftede transaksjoner.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Forrige
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Nåværende periode
+
+ Code Example
+ Kodeeksempel
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Installer pakke
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Respons
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf
index 1d5b5e57a..0daf26319 100644
--- a/frontend/src/locale/messages.nl.xlf
+++ b/frontend/src/locale/messages.nl.xlf
@@ -5,16 +5,16 @@
Close
Sluiten
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Dia van
+ Slide of
+ Dia van
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
Previous
Vorige
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Volgende
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Selecteer maand
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Selecteer jaar
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +62,216 @@
Previous month
Vorige maand
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Volgende maand
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
UU
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Uren
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minuten
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Uren verhogen
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Uren verlagen
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Minuten verhogen
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Minuten verlagen
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Seconden
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Seconden verhogen
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Seconden verlagen
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Sluiten
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Geregistreerde activa
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Zoek activa
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Wissen
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Naam
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Uitgeverdomein
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- Activa-ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Fout bij het laden van activagegevens.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Activa
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +343,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +368,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +418,7 @@
block.hash
-
+
Timestamp
Tijdstempel
@@ -535,14 +431,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +501,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +534,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +549,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +570,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +733,9 @@
bisq-dashboard.market-price-title
-
- View all »
- Bekijk alles »
+
+ View more »
+ Laat meer zien »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +745,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Servicevoorwaarden
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Privacybeleid
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Koop Aanbod
@@ -943,6 +908,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +978,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1012,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1034,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1046,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1088,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1110,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1209,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1233,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Bevestigd
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Asset-aanbiedingskosten
@@ -1412,38 +1407,20 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- We bouwen een mempool- en blockchainverkenner voor de Bitcoingemeenschap, gericht op de transactiekostenmarkt en het meerlagige ecosysteem, zonder advertenties, altcoins of trackers van derden.
+
+ 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.
+ Onze mempool- en blockchainverkenner voor de Bitcoingemeenschap, gericht op de transactiekostenmarkt en het meerlagige ecosysteem, volledig zelf-gehost zonder derde partijen.
src/app/components/about/about.component.html
- 13,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Bedrijfssponsoren 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Community Sponsoren ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Wordt een sponsor ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1429,74 @@
Navigeer naar https://mempool.space/sponsor om te sponsoren
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Community-integraties
+
+ Enterprise Sponsors 🚀
+ Bedrijfssponsoren 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Community Sponsoren ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+ Zelf-gehoste Integraties
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+ Walletintegraties
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Community-allianties
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+ Projectvertalers
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Projectbijdragers
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1505,7 @@
Projectleden
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1514,7 @@
Projectonderhouders
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1523,28 @@
Over
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig van
+
+ Multisig of
+ Multisig van
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1582,9 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Het aantal transacties van dit adres overschrijdt het Electrum-serverlimiet Overweeg in plaats daarvan dit adres op de officiële Mempool-website 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:
+ 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1602,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1638,22 @@
Liquid Asset page title
asset
-
+
Name
Naam
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1690,7 @@
Erin gezet
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1700,7 @@
Eruit gehaald
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1710,7 @@
Vernietigde hoeveelheid
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1720,11 @@
Circulerend bedrag
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1761,7 @@
Fout bij het laden van activagegevens.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1770,144 @@
Activa:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+ Groep van assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Activa
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+ Aanbevolen
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+ Alle
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Zoek activa
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Wissen
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Uitgeverdomein
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ Activa-ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Fout bij het laden van activagegevens.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Offline
@@ -1777,7 +1917,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1934,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1951,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1964,15 @@
Dashboard
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1981,7 @@
Statistieken
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1990,190 @@
Docs
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+ Blokvergoedingstarieven
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+ Blokvergoedingen
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+ Vergoedingen
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+ Blokbeloningen
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ Reward
+ Beloning
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 15,17
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+ Blokgrootte en Gewicht
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Grootte
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Gewicht
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Volgend Blok
@@ -1873,6 +2185,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2200,6 @@
Previous Block
-
- Timestamp
- Tijdstempel
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Grootte
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Gewicht
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Gemiddelde vergoeding
@@ -1957,7 +2226,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2254,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2274,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2317,15 @@
Totale vergoedingen
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2335,11 @@
Subsidie + vergoedingen:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2349,7 @@
Gedolven door
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2358,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2367,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2376,27 @@
Moeilijkheid
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2405,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2414,7 @@
Blokheader-hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2423,7 @@
Details
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2437,7 @@
Fout bij het laden van de blokdata.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2446,76 @@
Blok :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Gedolven
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TX's
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Gekopiëerd!
@@ -2164,850 +2524,131 @@
15
-
- API service
- API service
+
+ Adjusted
+ Aangepast
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Eindpunt
+
+ Change
+ Verandering
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Omschrijving
+
+ Difficulty Adjustment
+ Moeilijkheidsaanpassing
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Resterend
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+ blokken
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Geeft de details over moeilijkheidsaanpassing.
+
+ block
+ blok
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Geeft een lijst met beschikbare valuta's voor een bepaalde basisvaluta
+
+ Estimate
+ Schatting
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Geeft een lijst met open aanbiedingsprijzen voor een enkele markt.
+
+ Previous
+ Vorige
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Geeft hoog/laag/open/sluit-gegevens voor een bepaalde markt. Dit kan worden gebruikt om een kandelaargrafiek te genereren.
+
+ Current Period
+ Huidige Periode
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Geeft een lijst van beschikbare markten.
+
+ Next Halving
+ Volgende Halvering
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Geeft een lijst met details van openstaande aanbiedingen voor een enkele markt.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Geeft een 24-uurs prijsticker voor een enkele markt of alle markten.
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Geeft een lijst van voltooide transacties voor een enkele markt.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Geeft periodieke volumegegevens van een basisvaluta voor één of alle markten.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Geeft statistieken van alle Bisq-transacties.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Geeft details over een adres. Beschikbare velden: adres , chain_stats , en mempool_stats . chain,mempool _stats die elk een object bevatten met tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , en spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Verkrijg transactiegeschiedenis voor het opgegeven adres/scripthash, gesorteerd met de nieuwste eerst. Retourneert tot 50 mempool-transacties plus de eerste 25 bevestigde transacties. Je kan meer bevestigde transacties opvragen door het volgende te gebruiken :last_seen_txid (zie hieronder).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Geeft de niet-bevestigde transactiehistorie voor de het gevraagde adres/scripthash. Geeft 25 transacties per pagina. Door de laatste txid op te geven kunnen meer worden opgevraagd.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Geeft de niet-bevestigde transactiehistorie voor het gevraagde adres/scripthash. Geeft tot 50 transacties (niet-gepagineerd).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Krijg de lijst met niet-uitgegeven transactie-outputs die zijn gekoppeld aan het adres/scripthash. Beschikbare velden: txid , vout , value , en status (met de status van de financiering-tx). Er is ook een valuecommitment veld die mogelijk verschijnt in plaats van value , plus de volgende aanvullende velden: asset / assetcommitment , nonce / noncecommitment , surjection_proof , en range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Geeft informatie van Liquid activa.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Geeft de transacties die horen bij de Liquid-activa. Voor de originele activa, geeft de peg-in, peg-out en vernietig-transactie. Voor activa die voor gebruikers worden uitgegeven, wordt een lijst van uit-, heruitgave en vernietigtransacties gegeven. Hier zitten geen reguliere transacties bij.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Geeft de huidige totale voorraad van de gespecificeerde activa. Voor de originele activa (L-BTC) wordt dit berekend als [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Voor uitgegeven activa wordt dit berekend als [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Niet beschikbaar voor activa met geblinddoekte uitgaven. Als /decimal wordt opgegeven, wordt de totale voorraad als decimaal teruggeveen, afhankelijk van de deelbaarheid van de activa. Anders komt het terug in basis-units.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Geeft details over een blok. Beschikbare velden: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , en previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Geeft de hex-gecodeerde blokheader.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Geeft de hash van het blok dat momenteel op :height is.
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Geeft het rauwe blok weer, in binaire vorm.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Geeft de bevestigingsstatus van een blok. Beschikbare velden: in_best_chain (boolean, false voor georphanede blokken), next_best (de hash van het volgende blok, alleen beschikbaar voor blokken in de beste keten).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Geeft de hoogte van het laatste blok.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Geeft de hash van het laatste blok.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Geeft de transactie op index :index binnen het specifieke blok.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Geeft een lijst van alle txids in het blok.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Geeft een lijst met transacties in het blok (maximaal 25 transacties beginnend bij start_index ). Transacties die hier worden gegeven hebben niet het status veld, omdat alle transacties dezelfde blok- en bevestigingsstatus hebben.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Retourneert de 10 nieuwste blokken beginnend bij de tip of bij :start_height indien gespecificeerd.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Geeft de huidige mempool als geprojecteerde blokken.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Geeft onze momenteel voorgestelde vergoedingen voor nieuwe transacties.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Geeft de huidige achterstandstatistieken van de mempool.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Verkrijg de volledige lijst met txids in de mempool als een array. De volgorde van de txids is willekeurig en komt niet overeen met bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Ontvang een lijst met de laatste 10 transacties die in de mempool zijn gekomen. Elk transactieobject bevat vereenvoudigde overzichtsgegevens, met de volgende velden: txid , fee , vsize , en value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Geeft de ancestors en de beste descendantvergoedingen voor een transactie.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Geeft details over een transactie. Beschikbare velden: txid , version , locktime , size , weight , fee , vin , vout , en status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Geeft een transactie terug in hex-formaat.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Geeft een merkle-opnamebewijs voor de transactie door gebruik van bitcoind's merkleblock formaat.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Geeft een merkle-opnamebewijs voor de transactie door gebruik van Electrum's blockchain.transaction.get_merkle formaat.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Geeft de bestedingsstatus van een transactie-output. Beschikbare velden: spent (booleaans), txid (optioneel), vin (optioneel), and status (optioneel, de status van de uitgave-tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Geeft de uitgiftestatus van alle transactie-outputs.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Geeft een transactie terug in binair formaat.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Geeft de bevestigingsstatus van een transactie. Beschikbare velden: confirmed (booleaans), block_height (optioneel), en block_hash (optioneel).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Geeft :length Bisq-transacties, vanaf :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Zend een onbewerkte transactie uit naar het netwerk. De transactie moet worden opgegeven als hex in de hoofdtekst van het verzoek. De txid zal worden geretourneerd bij succes.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Default push: actie: 'want', data: ['blocks', ...] om uit te drukken wat je gepushed wilt hebben. Beschikbaar: blocks , mempool-blocks , live-2h-chart , en stats . Pushtransacties gerelateerd aan adres: 'track-address': '3PbJ...bF9B' om alle nieuwe transacties met dat adres als invoer of uitvoer te ontvangen. Retourneert een reeks transacties. address-transactions voor nieuwe mempooltransacties, en block-transactions voor nieuwe blokbevestigde transacties.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Codevoorbeeld
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Installeer pakket
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Reactie
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Documentatie
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Privacybeleid
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2689,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes per seconde:
+
+ Incoming transactions
+ Inkomende transacties
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Backend is aan het synchroniseren
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2720,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2734,11 @@
Onbevestigd
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2748,118 @@
Mempoolgrootte
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- blokken
+
+ Mining
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- blok
+
+ Pools Ranking
+ Poolrankering
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Gedolven
+
+ Pools Dominance
+ Pooldominatie
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Blokken
+
+ Hashrate & Difficulty
+ Hashrate & Moeilijkheid
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+ Pools Historische Dominantie
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+ Blokken indexeren
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+ Netwerkhashrate indexeren
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+ Poolshashrate indexeren
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2867,57 @@
Grafieken
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+ Miningdashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV-weergave
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Documentatie
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Vergoedingbereik
@@ -3198,23 +2927,6 @@
mempool-block.fee-span
-
- Total fees
- Totale vergoedingen
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Volgende blok
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Stapel van mempoolblokken
@@ -3236,7 +2948,7 @@
Bereik
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2956,329 @@
Som
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Onbekend
+
+ Reward stats
+ Beloningstatistieken
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Geïdentificeerd door uitbetalingsadres: ' '
+
+ (144 blocks)
+ (144 blokken)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Geïdentificeerd door coinbase-tag: ' '
+
+ Latest blocks
+ Laatste blokken
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+ Aanpassingen
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+ Pools Geluk (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+ Blokken (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+ Pools Aantal (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+ Rang
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+ Lege blokken
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+ Alle miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+ Miningpools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+ blokken
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+ Laat alles zien
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+ Verberg
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+ Hashrate (24u)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+ Geschatte
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+ Gerapporteerd
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+ Geluk
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+ Geminede blokken
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+ 24u
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+ Coinbaselabel
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,13 +3293,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
+
+ Transaction hex
Transactiehex
src/app/components/push-transaction/push-transaction.component.html
@@ -3303,6 +3311,81 @@
transaction.hex
+
+ Miners Reward
+ Minersbeloning
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+ Bedrag betaald aan miners in de afgelopen 144 blokken
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward Per Tx
+ Beloning 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+ Gemiddelde minerbeloning per transactie in de laatste 144 blokken
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+ Gemiddeld betaalde transactiekosten per transactie in de laatste 144 blokken
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, blokhoogte, hash of adres
@@ -3326,7 +3409,7 @@
Sponsor
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3422,7 @@
Verzoek factuur
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3431,7 @@
Wachten op transactie...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3440,7 @@
Donatie bevestigd!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3449,7 @@
Bedankt!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3458,7 @@
Mempool per vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3467,7 @@
Filter
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3476,7 @@
Omkeren
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3485,7 @@
Transactie-vBytes per seconde (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3704,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Bevestigd
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Eerst gezien
@@ -3714,26 +3787,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Grootte
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Gewicht
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Locktime
@@ -3771,15 +3824,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3853,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3862,7 @@
(Nieuw-gegenereerde munten)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3871,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3880,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3890,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3900,7 @@
Getuige-data
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3909,25 @@
P2SH claim-script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH claim-script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3936,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3945,7 @@
Vorig output-script
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3954,16 @@
Vorig output-type
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Laad alles
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out naar
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3972,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3982,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Deze transactie heeft % aan vergoedingen bespaard door native SegWit-Bech32 te gebruiken
@@ -4094,38 +4128,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Laatste blokken
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TX's
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Laatste transacties
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4146,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4155,7 @@
Vergoeding
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4164,7 @@
Uitvouwen
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4173,7 @@
Invouwen
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4182,7 @@
Minimumvergoeding
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4192,7 @@
Weggooien
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4202,7 @@
Geheugengebruik
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4212,95 @@
L-BTC in circulatie
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Inkomende transacties
+
+ API service
+ API service
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Moeilijkheidsaanpassing
+
+ Endpoint
+ Eindpunt
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Resterend
+
+ Description
+ Omschrijving
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Schatting
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Default push: actie: 'want', data: ['blocks', ...] om uit te drukken wat je gepushed wilt hebben. Beschikbaar: blocks , mempool-blocks , live-2h-chart , en stats . Pushtransacties gerelateerd aan adres: 'track-address': '3PbJ...bF9B' om alle nieuwe transacties met dat adres als invoer of uitvoer te ontvangen. Retourneert een reeks transacties. address-transactions voor nieuwe mempooltransacties, en block-transactions voor nieuwe blokbevestigde transacties.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Vorige
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Huidige Periode
+
+ Code Example
+ Codevoorbeeld
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Installeer pakket
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Reactie
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf
index ed72c9840..7a2e17953 100644
--- a/frontend/src/locale/messages.pl.xlf
+++ b/frontend/src/locale/messages.pl.xlf
@@ -5,16 +5,15 @@
Close
Zamknij
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Slajd z
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Poprzednie
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Następne
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Wybierz miesiąc
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Wybierz rok
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Poprzedni miesiąc
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Następny miesiąc
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Godzin
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minut
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Zwiększ godziny
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Zmniejsz godziny
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Zwiększ minuty
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Zmniejsz minuty
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Sekund
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Zwiększ sekundy
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Zmniejsz sekundy
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Zamknięcie
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Zarejestrowane aktywa
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Szukaj zasobu
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Wyczyść
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Nazwa
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Notowany jako
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Domena emitenta
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID aktywa
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Błąd podczas ładowania danych zasobów.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Aktywa
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Data
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Zobacz wszystko »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Warunki korzystania z usługi
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Polityka prywatności
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Oferty kupna
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Potwierdzona
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Opłata za notowanie aktywa
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Budujemy eksplorator mempool i blockchain dla społeczności Bitcoin, koncentrując się na rynku opłat transakcyjnych i wielowarstwowym ekosystemie, bez żadnych reklam, altcoinów czy zewnętrznych trackerów.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Sponsorzy Korporacyjni 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Sponsorzy społecznościowy ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Zostań sponsorem ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Przejdź do https://mempool.space/sponsor aby zasponosorować
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Integracje społecznościowe
+
+ Enterprise Sponsors 🚀
+ Sponsorzy Korporacyjni 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Sponsorzy społecznościowy ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Sojusze społecznościowe
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Współtwórcy projektu
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Członkowie projektu
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Opiekunowie projektu
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
O stronie
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig z
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Liczba transakcji na tym adresie przekracza limit serwera Electrum Zamiast tego rozważ wyświetlenie tego adresu na oficjalnej stronie 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Nazwa
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Transfer do (peg in)
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Transfer z (peg out)
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Spalona ilość
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Ilość w obiegu
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Błąd podczas ładowania danych aktywa.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Aktywo:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Aktywa
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Szukaj zasobu
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Wyczyść
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Notowany jako
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Domena emitenta
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID aktywa
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Błąd podczas ładowania danych zasobów.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Offline
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Dashboard
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Statystyki
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Dokumentacja
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Rozmiar
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Waga
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Następny blok
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Data
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Rozmiar
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Waga
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Mediana opłat
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Opłaty łącznie
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Subsydium + opłaty:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Górnik
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bity
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Korzeń Merkle'a
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Trudność
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Unikalna liczba
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Nagłówek bloku w postaci szesnastkowej
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Szczegóły
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Błąd podczas ładowania danych bloku.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Blok :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Wydobyty
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ Transakcje
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Skopiowano!
@@ -2164,850 +2503,126 @@
15
-
- API service
- Usługa API
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Końcówka
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Opis
+
+ Difficulty Adjustment
+ Dostosowanie trudności
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Pozostało
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Zwraca szczegółowe informacje o dostosowaniu trudności.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Zawiera listę dostępnych walut dla danej waluty bazowej.
+
+ Estimate
+ Estymata
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Zawiera listę otwartych cen ofertowych dla jednego rynku.
+
+ Previous
+ Poprzednia
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Dostarcza dane o cenach: wysokiej/niskiej/otwarcia/zamknięcia dla danego rynku. Można to wykorzystać do wygenerowania wykresu świecowego.
+
+ Current Period
+ Okres bieżący
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Zawiera listę dostępnych rynków.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Zawiera listę szczegółów otwartych ofert dla jednego rynku.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Zawiera 24-godzinny pasek cenowy dla jednego rynku lub wszystkich rynków
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Zawiera listę zakończonych transakcji dla jednego rynku.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Zawiera okresowe dane o wolumenie w walucie bazowej dla jednego lub wszystkich rynków.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Zwraca szczegóły o wszystkich transakcjach Bisq.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Zwraca szczegółowe informacje o adresie. Dostępne pola: adress , chain_stats i mempool_stats . chain,mempool _stats zawierają obiekt z tx_count , funded_txo_count , funded_txo_sum , spent_txo_count i spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Zwraca historię transakcji dla podanego adresu / hasha skryptu, posortowaną od najnowszych. Zwraca do 50 transakcji mempool plus pierwsze 25 potwierdzonych transakcji. Możesz zarządać więcej potwierdzonych transakcji, używając :last_seen_txid (patrz poniżej).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Uzyskaj historię potwierdzonych transakcji dla określonego adresu / hasha skryptu, posortowaną od najnowszych. Zwraca 25 transakcji na stronę. Można zażądać więcej, określając identyfikator ostatniej transakcji widziany przez poprzednie zapytanie.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Uzyskaj historię niepotwierdzonych transakcji dla podanego adresu/scripthash. Zwraca do 50 transakcji (brak stronicowania).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Zwraca listę niewydanych wyjść transakcji związanych z podanym adresem / hashem skryptu. Dostępne pola: txid , vout , value i status (wraz statusem transakcji fundującej). Jest także pole valuecommitment , które może pojawić się zamiast value , oraz następujące pola dodatkowe: asset / assetcommitment , nonce / noncecommitment , surjection_proof i range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Zwraca informacje o aktywie Liquid.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Zwraca transakcje powiązane z określonym zasobem Liquid. W przypadku zasobu natywnego sieci zwraca listę transakcji do (peg in), z (peg out) oraz spalania. W przypadku zasobów wyemitowanych przez użytkownika zwraca listę transakcji emisji, ponownej emisji i spalania. Nie obejmuje zwykłych transakcji transferujących tego aktywa.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Uzyskaj bieżącą całkowitą podaż określonego aktywa. W przypadku aktywa natywnego (L-BTC) jest to obliczane jako [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. W przypadku aktywów wyemitowanych jest to obliczane jako [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Niedostępne dla aktywów z poufną kwotą emisji. Jeśli określono /decimal, zwraca podaż jako ułamek dziesiętny zgodnie z podzielnością aktywa. W przeciwnym razie zwracane w jednostkach bazowych.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Zwraca szczegółowe informacje o bloku. Dostępne pola: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Zwraca nagłówek bloku w postaci szesnastkowej.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Zwraca hash bloku o numerze :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Zwraca binarną reprezentację bloku.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Zwraca status potwierdzenia bloku. Dostępne pola: in_best_chain (wartość logiczna, fałsz dla osieroconych bloków), next_best (hash następnego bloku, dostępne tylko dla bloków w najlepszym łańcuchu).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Zwraca numer ostatniego bloku.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Zwraca hash ostatniego bloku.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Zwraca transakcję na pozycji :index w obrębie podanego bloku.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Zwraca listę wszystkich ID transakcji w danym bloku.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Zwraca listę transakcji w bloku (aż do 25 transakcji począwszy od start_index ). Transakcje nie mają pola status gdyż wszystkie mają ten sam blok i status.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Zwraca 10 najnowszych bloków od szczytu lub na pozycji :start_height jeśli podano.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Zwraca obecny mempool jako rzut bloków.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Zwraca obecnie sugerowane przez nas opłaty za nowe transakcje.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Zwraca bieżące statystyki zaległych transakcji w mempool
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Pobierz pełną listę ID transakcji w pamięci mempool jako tablicę. Kolejność txids jest dowolna i nie odpowiada bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Pobiera listę 10 ostatnich transakcji, które weszły do mempoola. Każdy obiekt transakcji zawiera uproszczone dane poglądowe, z następującymi polami: txid , fee , vsize i value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Zwraca przodków i najlepsze opłaty potomne za transakcję.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Zwraca szczegółowe dane transakcji. Dostępne pola: txid , version , locktime , size , weight , fee , vin , vout i status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Zwraca transakcję zserializowaną w postaci heksadecymalnej.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Zwraca dowód włączenia merkle'a dla transakcji przy użyciu formatu merkleblock bitcoind .
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Zwraca dowód włączenia merkle'a dla transakcji przy użyciu formatu blockchain.transaction.get_merkle Electrum.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Zwraca status płatności podanego wyjścia transakcji. Dostępne pola: spent (wartość logiczna), txid (opcjonalne), vin (opcjonalne) i status (opcjonalne, status transakcji wydatkującej).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Zwraca stan wydania wszystkich wyjść transakcji.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Zwraca transakcję jako dane binarne.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Zwraca status płatności podanej transakcji. Dostępne pola: confirmed (wartość logiczna), block_height (opcjonalne), and block_hash (opcjonalne).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Zwraca :length ostatnich transakcji Bisq, zaczynając od :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Rozgłoś surową transakcję do sieci. Transakcję należy podać w treści żądania w postaci szesnastkowej. txid zostanie zwrócony w przypadku pomyślnego zakończenia.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Domyślny push: action: 'want', data: ['blocks', ...] aby wyrazić co chcesz wysłać. Dostępne: blocks , mempool-blocks , live-2h-chart i stats . Wysłanie transakcji związanych z adresem: 'track-address': '3PbJ...bF9B' aby otrzymać wszystkie nowe transakcje zawierające ten adres jako wejście lub wyjście. Zwraca tablicę transakcji. address-transactions dla nowych transakcji mempool, i block-transactions dla nowo potwierdzonych transakcji w bloku.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Przykład kodu
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Zainstaluj pakiet
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Odpowiedź
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Dokumentacja
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Polityka prywatności
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- vBytes na sekundę:
+
+ Incoming transactions
+ Transakcje przychodzące
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Backend się synchronizuje
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
Niepotwierdzone
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
Rozmiar mempool
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- bloki
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- blok
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Wydobyty
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Bloki
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
Wykresy
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
Widok TV
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Dokumentacja
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Zakres opłat
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Opłaty łącznie
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Następny blok
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Stos bloków mempool
@@ -3236,7 +2912,7 @@
Przedział
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
Suma
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Nieznany
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Zidentyfikowany przez adres wypłaty: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Zidentyfikowane przez tag coinbase: ' '
+
+ Latest blocks
+ Ostatnie bloki
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Transakcja w postaci szesnastkowej
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
ID transakcji, numer bloku, hash lub adres
@@ -3326,7 +3344,7 @@
Zostań sponsorem
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
Poproś o fakturę
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
Oczekiwanie na transakcje...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
Darowizna potwierdzona!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
Dziękujemy!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
Mempool wg vBytes (sat / vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
Filtr
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
Odwróć
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
vBytes transkacji na sekundę (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Potwierdzona
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Pierwszy raz widziana
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Rozmiar
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Waga
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Czas blokady
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(Nowo Wygenerowane Monety)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
Świadek
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
Skrypt realizacji P2SH
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
Skrypt świadka P2WSH
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
Poprzedni skrypt wyjściowy
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
Poprzedni typ wyjścia
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Załaduj wszystko
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out do
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- dane
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Ta transakcja pozwoliła zaoszczędzić % na opłatach za pomocą natywnego SegWit-Bech32
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Ostatnie bloki
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- Transakcje
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Ostatnie transkacje
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
Wartość w USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
Opłata
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
Rozwiń
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
Zwiń
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
Minimalna opłata
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
Próg odrzucenia
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
Zużycie pamięci
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
L-BTC w obiegu
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Transakcje przychodzące
+
+ API service
+ Usługa API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Dostosowanie trudności
+
+ Endpoint
+ Końcówka
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Pozostało
+
+ Description
+ Opis
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Estymata
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Domyślny push: action: 'want', data: ['blocks', ...] aby wyrazić co chcesz wysłać. Dostępne: blocks , mempool-blocks , live-2h-chart i stats . Wysłanie transakcji związanych z adresem: 'track-address': '3PbJ...bF9B' aby otrzymać wszystkie nowe transakcje zawierające ten adres jako wejście lub wyjście. Zwraca tablicę transakcji. address-transactions dla nowych transakcji mempool, i block-transactions dla nowo potwierdzonych transakcji w bloku.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Poprzednia
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Okres bieżący
+
+ Code Example
+ Przykład kodu
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Zainstaluj pakiet
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Odpowiedź
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf
index 025b80c76..b79eadbb0 100644
--- a/frontend/src/locale/messages.pt.xlf
+++ b/frontend/src/locale/messages.pt.xlf
@@ -5,16 +5,16 @@
Close
Fechar
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Slide de
+ Slide of
+ Slide de
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
Previous
Anterior
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Próximo
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Selecione o mês
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Selecione o ano
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +62,216 @@
Previous month
Mês anterior
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Mês seguinte
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
H
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Horas
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
M
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minutos
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Horas incrementadas
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Horas decrementadas
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Minutos incrementados
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Minutos decrementados
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
S
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Segundos
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Segundos incrementados
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Segundos decrementados
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Fechar
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Ativos registrados
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Ativo buscado
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Limpar
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Nome
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Domínio do emissor
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID do ativo
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Erro ao carregar os dados dos ativos.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Ativos
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +343,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +368,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +418,7 @@
block.hash
-
+
Timestamp
Data e horário
@@ -535,14 +431,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +501,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +534,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +549,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +570,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +733,9 @@
bisq-dashboard.market-price-title
-
- View all »
- Ver tudo »
+
+ View more »
+ Ver mais »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +745,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Termos de Serviço
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Política de Privacidade
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Ofertas de compra
@@ -943,6 +908,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +978,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1012,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1034,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1046,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1088,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1110,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1209,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1233,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Confirmado
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Taxa de listagem do ativo
@@ -1412,38 +1407,20 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Construindo um explorador da mempool e blockchain para a comunidade Bitcoin, com foco nas taxas de transação e ecossistema multicamadas, sem qualquer publicidade, altcoins ou rastreadores de terceiros.
+
+ 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.
+ Nosso explorador da blockchain e mempool para a comunidade Bitcoin, focando no mercado de taxas de transação e ecossistema multicamadas, completamente auto-hospedado sem confiar em terceiros.
src/app/components/about/about.component.html
- 13,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Empresas Patrocinadoras 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Patrocinadores da comunidade ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Seja um patrocinador ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1429,74 @@
Navege para https://mempool.space/sponsor para patrocinar
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Integrações da comunidade
+
+ Enterprise Sponsors 🚀
+ Empresas Patrocinadoras 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Patrocinadores da comunidade ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+ Integrações de auto-hospedagem
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+ Integrações de Carteiras
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Alianças da comunidade
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+ Tradutores do Projeto
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Contribuidores do projeto
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1505,7 @@
Membros do Projeto
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1514,7 @@
Mantenedores do projeto
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1523,28 @@
Sobre
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig de
+
+ Multisig of
+ Multisig de
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1582,9 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- O número de transações neste endereço excede o limite do servidor Electrum Considere visualizar 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
@@ -1608,17 +1602,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1638,22 @@
Liquid Asset page title
asset
-
+
Name
Nome
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1690,7 @@
Indexado em
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1700,7 @@
Atrelado
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1710,7 @@
Quantia queimada
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1720,11 @@
Quantidade circulante
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1761,7 @@
Erro ao carregar os dados do ativo.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1770,144 @@
Ativo:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+ Grupo de ativos
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Ativos
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+ Em destaque
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+ Todos
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Ativo buscado
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Limpar
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Domínio do emissor
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID do ativo
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Erro ao carregar os dados dos ativos.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Sem conexão
@@ -1777,7 +1917,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1934,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1951,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1964,15 @@
Painel de controle
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1981,7 @@
Estatísticas
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1990,190 @@
Docs
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+ Cotas das Taxas dos Blocos
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+ Taxas dos Blocos
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+ Taxas
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+ Recompensas do Bloco
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ Reward
+ Recompensa
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 15,17
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+ Tamanho e Peso dos Blocos
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Tamanho
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Peso
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Próximo Bloco
@@ -1873,6 +2185,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2200,6 @@
Previous Block
-
- Timestamp
- Data e horário
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Tamanho
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Peso
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Taxa média
@@ -1957,7 +2226,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2254,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2274,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2317,15 @@
Total de taxas
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2335,11 @@
Recompensa + taxas:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2349,7 @@
Minerador
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2358,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2367,7 @@
Árvore Merkle
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2376,27 @@
Dificuldade
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2405,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2414,7 @@
Block Header Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2423,7 @@
Detalhes
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2437,7 @@
Erro ao carregar os dados do bloco.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2446,76 @@
Bloco :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Minerado
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ Transações
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Copiado!
@@ -2164,850 +2524,131 @@
15
-
- API service
- Serviço de API
+
+ Adjusted
+ Ajustado
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Terminal
+
+ Change
+ Mudança
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Descrição
+
+ Difficulty Adjustment
+ Ajuste de Dificuldade
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Faltando
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+ blocos
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Retorna os detalhes sobre o ajuste de dificuldade.
+
+ block
+ bloco
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Fornece uma lista de moedas disponíveis para uma determinada moeda base.
+
+ Estimate
+ Estimativa
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Fornece lista de preços de oferta aberta para um único mercado.
+
+ Previous
+ Anterior
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Fornece dados de máxima/mínima/abertura/fechamento para um determinado mercado. Isso pode ser usado para gerar um gráfico de velas.
+
+ Current Period
+ Período Atual
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Fornece lista de mercados disponíveis.
+
+ Next Halving
+ Próximo Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Forenece uma lista de detalhes de ofertas abertas para um único mercado.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Fornece ticker com preço das 24 horas para o único mercado ou todos os mercados
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Fornece lista de negociações concluídas para um único mercado.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Fornece dados de volume periódicos em termos de moeda base para um ou todos os mercados.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Retorna estatísticas sobre todas as transações Bisq.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Retorna detalhes sobre um endereço. Campos disponíveis: address , chain_stats e mempool_stats . chain, mempool _stats cada um contém um objeto com tx_count , funded_txo_count , funded_txo_sum , spend_txo_count e spend_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Obtenha o histórico de transações para o endereço/scripthash especificado, classificado com o mais recente primeiro. Retorna até 50 transações mempool mais as 25 primeiras transações confirmadas. Você pode solicitar mais transações confirmadas usando :last_seen_txid (veja abaixo).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Obtenha o histórico de transações confirmadas para o endereço/scripthash especificado, ordenado pelo mais recente. Retorna 25 transações por página. Mais podem ser solicitados especificando o último ID de transação visto pela consulta anterior.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Obtenha o histórico de transações não confirmadas para o endereço/scripthash especificado. Retorna até 50 transações (sem paginação).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Obtenha a lista de saídas de transações não gastas associadas ao endereço / scripthash. Campos disponíveis: txid , vout , value e status (com o status do tx de financiamento). Também há um campo valuecommitment que pode aparecer no lugar do valor , além dos seguintes campos adicionais: asset / assetcommitment , nonce / noncecommitment , surjection_proof , e range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Retorna informações sobre um ativo da Liquid.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Retorna as transações associadas ao recurso da Liquid especificado. Para o ativo nativo da rede, retorna uma lista de transações de indexado em, atrelado e queima. Para ativos emitidos pelo usuário, retorna uma lista de transações de emissão, reemissão e queima. Não inclui transações regulares de transferência deste ativo.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Obtenha o suprimento total atual do ativo especificado. Para o ativo nativo (L-BTC), isso é calculado como [cadeia, mempool] _stats.peg_in_amount - [cadeia, mempool] _stats.peg_out_amount - [cadeia, mempool] _stats.burned_amount. Para ativos emitidos, isso é calculado como [cadeia, mempool] _stats.issued_amount - [cadeia, mempool] _stats.burned_amount. Não disponível para ativos com emissões ocultas. Se / decimal for especificado, retorna o fornecimento como decimal de acordo com a divisibilidade do ativo. Caso contrário, retornado em unidades básicas.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Retorna detalhes sobre um bloco. Campos disponíveis: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof e previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Retorna o código hexadecimal do cabeçalho do bloco.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Retorna o hash do bloco atual em :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Retorna a representação do bloco bruto em binário.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Retorna o status de confirmação de um bloco. Campos disponíveis: in_best_chain (booleano, falso para blocos órfãos), next_best (o hash do próximo bloco, disponível apenas para blocos na melhor cadeia).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Retorna a altura do último bloco.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Retorna o hash do último bloco.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Retorna a transação no índice :index com o bloco especificado.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Retorna uma lista de todos os IDs de transações no bloco.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Retorna uma lista de transações no bloco (até 25 transações começando em start_index ). As transações retornadas aqui não têm o campo de status , pois todas as transações compartilham o mesmo bloco e status de confirmação.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Retorna os 10 blocos mais novos começando na ponta ou em :start_height se especificado.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Devolve o mempool atual como blocos projetados.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Devolve as nossas taxas atuais sugeridas para novas transações.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Retorna as estatísticas atuais do backlog do mempool.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Obtenha a lista completa de IDs de transação no mempool como um array. A ordem dos IDs de transação é arbitrária e não corresponde ao bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Obtenha uma lista das últimas 10 transações que entraram no mempool. Cada objeto de transação contém dados de visão geral simplificados, com os seguintes campos: txid , fee , vsize e value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Devolve os ancestrais e as melhores taxas descendentes para uma transação.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Retorna detalhes sobre uma transação. Campos disponíveis: txid , version , locktime , size , weight , fee , vin , vout e status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Retorna uma transação serializada como hexadecimal.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Retorna uma prova de inclusão de merkle para a transação usando o formato merkleblock do bitcoind .
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Retorna uma prova de inclusão de merkle para a transação usando o formato blockchain.transaction.get_merkle do Electrum.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Retorna o status de gastos de uma saída de transação. Campos disponíveis: spend (booleano), txid (opcional), vin (opcional) e status (opcional, o status do gasto tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Retorna o status de gastos de todas as saídas da transação.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Retorna uma transação como dados binários.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Retorna o status de confirmação da transação. Campos disponíveis: confirmado (booleano), block_height (opcional), and block_hash (opcional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Retorna :comprimento das últimas transações Bisq, começando em :índice.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Transmita uma transação bruta para a rede. A transação deve ser fornecida como hexadecimal no corpo da solicitação. O txid será devolvido em caso de sucesso.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Push padrão: ação: 'want', data: ['blocks', ...] para expressar o que você deseja push. Disponível: blocks , mempool-blocks , live-2h-chart e stats . Push transações relacionadas ao endereço: 'track-address': '3PbJ ... bF9B' para receber todas as novas transações contendo aquele endereço como entrada ou saída. Retorna uma matriz de transações. address-transactions para novas transações de mempool e block-transactions para novas transações de bloco confirmadas.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Exemplo de código
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Instalar Pacote
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Resposta
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Documentação
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Política de Privacidade
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2689,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Transação vBytes por segundo:
+
+ Incoming transactions
+ Transações de entrada
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Processo interno está sincronizando
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2720,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2734,11 @@
Sem confirmar
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2748,118 @@
Tamanho do mempool
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- blocos
+
+ Mining
+ Mineração
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- bloco
+
+ Pools Ranking
+ Ranking dos Pools
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Minerado
+
+ Pools Dominance
+ Domínio dos Pools
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Blocos
+
+ Hashrate & Difficulty
+ Hashrate e Dificuldade
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+ Histórico do Domínio dos Pools
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+ Indexando blocos
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+ Hashrate da rede de indexação
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+ Hashrate dos pools de indexação
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2867,57 @@
Gráficos
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+ Painel de Mineração
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
Visualização da TV
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Documentação
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Extensão da taxa
@@ -3198,23 +2927,6 @@
mempool-block.fee-span
-
- Total fees
- Taxas totais
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Próximo bloco
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Pilha de blocos mempool
@@ -3236,7 +2948,7 @@
Alcance
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2956,329 @@
Soma
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Desconhecido
+
+ Reward stats
+ Estatisticas de recompensas
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Identificado pelo endereço de pagamento: ' '
+
+ (144 blocks)
+ (144 blocos)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Identificado pela tag coinbase: ' '
+
+ Latest blocks
+ Últimos blocos
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+ Ajustes
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+ Sorte dos Pools (1 sem.)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+ Blocos (1 sem.)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+ Quantidade de Pools (1 sem.)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+ Blocos vazios
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+ Todos os mineradores
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+ Pools de Mineração
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+ blocos
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+ Mostrar todas
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+ Esconder
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+ Estimado
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+ Reportado
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+ Sorte
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+ Blocos minerados
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+ 1 sem.
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+ Tag da coinbase
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3293,14 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Hex da Transaçao
+
+ Transaction hex
+ Hex da Transação
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3311,81 @@
transaction.hex
+
+ Miners Reward
+ Recompensa dos Mineradores
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+ Valor pago aos mineradores nos últimos 144 blocos
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward Per Tx
+ Recompensa por 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+ Média da recompensa por transação dos mineradores nos últimos 144 blocos
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ 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
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
ID da transação, altura, hash ou endereço
@@ -3326,7 +3409,7 @@
Patrocinador
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3422,7 @@
Solicitação de Pagamento
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3431,7 @@
Aguardando transação...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3440,7 @@
Doação confirmada!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3449,7 @@
Obrigado!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3458,7 @@
Mempool em vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3467,7 @@
Filtro
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3476,7 @@
Inverter
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3485,7 @@
Transação vBytes por segundo (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3704,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Confirmado
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Visto pela primeira vez
@@ -3714,26 +3787,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Tamanho
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Peso
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Tempo travado
@@ -3771,15 +3824,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3853,7 @@
Conteúdo no bloco
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3862,7 @@
(Moedas Recém-Geradas)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3871,7 @@
Indexado em
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3880,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3890,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3900,7 @@
Testemunho
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3909,25 @@
P2SH script de resgate
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH script de testemunho
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3936,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3945,7 @@
Script de saída anterior
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3954,16 @@
Tipo de saída anterior
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Carregar tudo
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out para
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3972,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3982,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- dados
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Essa transação economizou % em taxas por usar SegWit-Bech32 nativo.
@@ -4094,38 +4128,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Últimos blocos
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- Transações
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Últimas transações
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4146,7 @@
Dólar
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4155,7 @@
Taxa
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4164,7 @@
Expandir
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4173,7 @@
Colapso
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4182,7 @@
Mínimo exigido
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4192,7 @@
Mínimo exigido
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4202,7 @@
Uso do Mempool
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4212,95 @@
L-BTC em circulação
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Transações de entrada
+
+ API service
+ Serviço de API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Ajuste de Dificuldade
+
+ Endpoint
+ Terminal
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Faltando
+
+ Description
+ Descrição
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Estimativa
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Push padrão: ação: 'want', data: ['blocks', ...] para expressar o que você deseja push. Disponível: blocks , mempool-blocks , live-2h-chart e stats . Push transações relacionadas ao endereço: 'track-address': '3PbJ ... bF9B' para receber todas as novas transações contendo aquele endereço como entrada ou saída. Retorna uma matriz de transações. address-transactions para novas transações de mempool e block-transactions para novas transações de bloco confirmadas.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Anterior
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Período Atual
+
+ Code Example
+ Exemplo de código
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Instalar Pacote
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Resposta
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.ro.xlf b/frontend/src/locale/messages.ro.xlf
index 9638e612d..31df626e2 100644
--- a/frontend/src/locale/messages.ro.xlf
+++ b/frontend/src/locale/messages.ro.xlf
@@ -5,16 +5,15 @@
Close
Închide
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Glisează din
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Anterior
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Următorul
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Selectează luna
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Selectează anul
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Luna trecută
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Luna viitoare
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Ore
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
LL
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minute
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Incrementează orele
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Decrementează orele
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Incrementează minutele
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Decrementează minutele
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Secunde
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Incrementează secundele
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Decrementează secundele
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Închide
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Active înregistrate
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Caută active
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Anulează
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Nume
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Simbol
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Domeniul emitentului
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID-ul activului
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Eroare la încărcarea datelor despre active.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Active
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Data și ora
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Vezi tot »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Termenii serviciului
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Politica de confidențialitate
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Oferte Cumpărare
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Confirmate
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Comision de listare a activelor
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Construirea unui explorator de mempool și blockchain pentru comunitatea Bitcoin, concentrat pe piața comisioanelor de tranzacție și ecosistemului stratificat, fără publicitate, criptomonede alternative sau urmăritori terți.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Sponsori Enterprise 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Sponsori din Comunitate ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Deveniți sponsor ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Navighează la https://mempool.space/sponsor pentru a sponsoriza
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Integrări din Comunitate
+
+ Enterprise Sponsors 🚀
+ Sponsori Enterprise 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Sponsori din Comunitate ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Alianțe din Comunitate
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Contribuitori ai proiectului
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Membrii Proiectului
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Întreținători ai proiectului
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
Despre
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig din
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Numărul de tranzacții din această adresă depășește limita serverului Electrum Luați în considerare vizualizarea tranzacției pe site-ul oficial 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Nume
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Legat în
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Legat spre
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Cantitatea distrusă
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Cantitatea în circulație
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Eroare la încărcarea datelor despre active.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Activ:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Active
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Caută active
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Anulează
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Simbol
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Domeniul emitentului
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID-ul activului
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Eroare la încărcarea datelor despre active.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Deconectat
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Panou
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Statistici
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Docs
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Mărime
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Greutate
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Blocul următor
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Data și ora
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Mărime
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Greutate
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Comision median
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Total comisioane
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Subvenție + comisioane:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Miner
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Biți
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Rădăcină Merkle
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Dificultate
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Număr arbitrar
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Valoarea Hex a antetului blocului
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Detalii
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Eroare la încărcarea datelor blocului.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Bloc :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Minat
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Copiat!
@@ -2164,850 +2503,126 @@
15
-
- API service
- Serviciu API
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Terminație
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Descriere
+
+ Difficulty Adjustment
+ Ajustarea Dificultății
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Rămas
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Returnează detalii despre ajustarea dificultății.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Furnizează lista valutelor disponibile pentru o valută de bază.
+
+ Estimate
+ Estimare
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Furnizează lista de oferte de preț deschise pentru o singură piață.
+
+ Previous
+ Anterior
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Furnizează date de preț maxim/minim/deschis/închis pentru o anumită piață. Acestea pot fi folosite pentru generarea unei diagrame.
+
+ Current Period
+ Perioada Curentă
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Furnizează lista cu piețele disponibile.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Furnizează lista cu detalii ale cererilor deschise pentru o singură piață.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Furnizează prețul la 24 de ore pentru o singură piață sau toate piețele.
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Furnizează lista cu tranzacțiile efectuate pentru o singură piață.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Furnizează date despre volumul periodic în formatul valutei de bază pentru una sau toate piețele.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Returnează statistici despre toate tranzacțiile Bisq.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Returnează detalii despre o adresă. Câmpuri disponibile: address , chain_stats , și mempool_stats . chain,mempool _stats fiecare conțin un obiect cu tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , și spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Returnează istoricul de tranzacții pentru adresa/scripthash-ul specificat, începând cu cea mai nouă. Returnază până la 50 de tranzacții din mempool plus primele 25 de tranzacții confirmate. Puteți cere mai multe tranzacții confirmate folosind :last_seen_txid (vedeți mai jos).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Returnează istoricul tranzacțiilor confirmate pentru adresa / scripthash-ul specificate, sortat după cele mai noi tranzacții. Returnează 25 de tranzacții per pagină. Mai multe pot fi solicitate prin specificarea ultimului txid văzut de interogarea anterioară.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Returnează istoricul tranzacțiilor neconfirmate pentru adresa / scripthash-ul specificate. Returnează până la 50 de tranzacții (fără paginare).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Returnează lista de TXO-uri necheltuite asociate cu adresa/scripthash-ul. Câmpuri disponibile: txid , vout , value , și status (cu statusul tranzacției finanțatoare). Există și un câmp valuecommitment care poate să apară în locul value , plus următoarele câmpuri adiționale: asset / assetcommitment , nonce / noncecommitment , surjection_proof , și range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Returnează informații despre un activ Liquid.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Returnează tranzacțiile asociate activului Liquid specificat. Pentru activul nativ al rețelei, returnează o listă de tranzacții de tip Legat În, Legat spre și distrugere. Pentru activele emise de utilizatori, returnează o listă cu tranzacțiile de tip emisiune, reemisiune și distrugere. Nu include tranzacțiile obișnuite care transferă acest activ.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Returnează masa monetară totală curentă a activului specificat. Pentru activul nativ (L-BTC), aceasta este calculată ca [chain, mempool] _stats.peg_in_amount - [chain, mempool] _stats.peg_out_amount - [chain, mempool] _stats.burned_amount. Pentru activele emise, aceasta se calculează ca [chain, mempool] _stats.issued_amount - [chain, mempool] _stats.burned_amount. Nu este disponibilă pentru active cu emisiuni de tip blind. Dacă este specificat /zecimal, returnează valoarea ca zecimal în funcție de divizibilitatea activului. În caz contrar, returnează în unități de bază.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Returnează detalii despre un bloc. Câmpuri disponibile: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , și previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Returnează antetul blocului în cod hex.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Returnează hash-ul blocului aflat la înălțimea :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Returnează reprezentarea brută a blocului în cod binar.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Returnează statusul confirmării unui bloc. Câmpuri disponibile: in_best_chain (boolean, fals pentru blocuri orfane), next_best (hash-ul blocului următor, disponibil doar pentru blocuri din lanțul cel mai bun).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Returnează poziția ultimului bloc.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Returnează hash-ul ultimului bloc.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Returnează tranzacția de la indexul :index din blocul specificat.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Returnează o listă a tuturor txid-urilor din bloc.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Returnează o listă de tranzacții din bloc (maxim 25 de tranzacții începând cu start_index ). Tranzacțiile returnate aici nu au câmpul status , deoarece toate tranzacțiile sunt din același bloc și au același status.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Returnează cele mai noi 10 blocuri începând cu vârful sau cu înălțimea :start_height dacă este specificat.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Returnează conținutul mempool-ului curent sub formă de blocuri proiectate.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Returnează comisioanele sugerate de noi în prezent pentru tranzacții noi.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Returnează statisticile curente privind tranzacțiile acumulate în mempool.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Returnează lista completă de txids din mempool sub formă de colecție. Ordinea txid-urilor este arbitrară și este diferită de cea din bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Returnează lista cu cele mai noi 10 trazacții care au intrat în mempool. Fiecare obiect conține un sumar de date simplificate, cu următoarele câmpuri: txid , fee , vsize , și value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Returnează strămoșii și cele mai bune comisionane moștenite pentru o tranzacție.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Returnează detalii despre o tranzacție. Câmpuri disponibile: txid , version , locktime , size , weight , fee , vin , vout , și status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Returnează o tranzacție serializată în format hex.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Returnează dovada de incluziune merkle pentru tranzacție folosind formatul bitcoind's merkleblock .
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Returnează dovada de incluziune merkle pentru tranzacție folosind Electrum's blockchain.transaction.get_merkle format.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Returnează statusul cheltuirii unui TXO. Câmpuri disponibile: spent (boolean), txid (opțional), vin (opțional), și status (opțional, statusul tranzacției cheltuitoare).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Returnează starea tuturor ieșirilor.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Returnează o tranzacție în format binar.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Returnează statusul confirmării unei tranzacții. Câmpuri disponibile: confirmed (boolean), block_height (opțional), și block_hash (opțional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Returnează :length a ultimelor tranzacții Bisq, începând de la :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Transmite o tranzacție brută către rețea. Tranzacția trebuie să fie în format hex în corpul cererii. ID-ul txid va fi returnat în caz de succes.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Trimitere implicită: acțiune: 'want', data: ['blocks', ...] pentru a exprima ce dorești să trimiți. Disponibil: blocks , mempool-blocks , live-2h-chart , și stats . Tranzacții de trimitere pentru adresa: 'track-address': '3PbJ...bF9B' pentru a primi toate tranzacțiile noi care conțin acea adresă ca intrare sau iesire. Returnează un șir de tranzacții. address-transactions pentru tranzacții noi din mempool, și block-transactions pentru tranzacții confirmate din blocuri noi.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Exemplu de cod
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Instalați Pachetul
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Răspuns
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Documentație
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Politica de confidențialitate
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes per secundă:
+
+ Incoming transactions
+ Tranzacții în curs de primire
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Se sincronizează Backend
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
Neconfirmate
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
Dimensiune Mempool
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- blocuri
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- bloc
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Minat
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Blocuri
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
Grafice
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
Mod TV
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Documentație
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Interval comisioane
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Total comisioane
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Blocul următor
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Stivă de blocuri din mempool
@@ -3236,7 +2912,7 @@
Interval
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
Sumă
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Necunoscut
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Identificat prin adresa de plată: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Identificat prin identificatorul coinbase: ' '
+
+ Latest blocks
+ Ultimele blocuri
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Valoarea Hex a tranzacției
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, poziție bloc, hash sau adresă
@@ -3326,7 +3344,7 @@
Sponsor
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
Solicitați factură
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
Se așteaptă tranzacția...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
Donație confirmată!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
Mulțumesc!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
Mempool prin vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
Filtru
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
Inversează
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
Tranzacție vBytes pe secundă (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Confirmate
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Prima dată văzut
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Mărime
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Greutate
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Locktime
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(Monede Nou Generate)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
Legat-în
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
Martor
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
Script valorificare P2SH
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
Script martor P2WSH
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
Script de ieșire anterior
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
Tip ieșire anterior
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Încarcă tot
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Legat-spre
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Această tranzacție a economisit % în comisioane folosind implicit SegWit-Bech32
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Ultimele blocuri
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Ultimele tranzacții
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
Comision
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
Extinde
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
Colapsează
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
Comision minim
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
Înlăturare
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
Utilizarea memoriei
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
L-BTC în circulație
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Tranzacții în curs de primire
+
+ API service
+ Serviciu API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Ajustarea Dificultății
+
+ Endpoint
+ Terminație
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Rămas
+
+ Description
+ Descriere
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Estimare
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Trimitere implicită: acțiune: 'want', data: ['blocks', ...] pentru a exprima ce dorești să trimiți. Disponibil: blocks , mempool-blocks , live-2h-chart , și stats . Tranzacții de trimitere pentru adresa: 'track-address': '3PbJ...bF9B' pentru a primi toate tranzacțiile noi care conțin acea adresă ca intrare sau iesire. Returnează un șir de tranzacții. address-transactions pentru tranzacții noi din mempool, și block-transactions pentru tranzacții confirmate din blocuri noi.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Anterior
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Perioada Curentă
+
+ Code Example
+ Exemplu de cod
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Instalați Pachetul
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Răspuns
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.ru.xlf b/frontend/src/locale/messages.ru.xlf
index dd2da8f2e..b255e50cb 100644
--- a/frontend/src/locale/messages.ru.xlf
+++ b/frontend/src/locale/messages.ru.xlf
@@ -5,16 +5,15 @@
Close
Закрыть
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Слайд из
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Предыдущий
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Следующий
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Выберите месяц
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Выберите год
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Предыдущий месяц
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Следующий месяц
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
ч.
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Часы
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
м.
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Минуты
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Добавить часы
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Убавить часы
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Добавить минуты
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Убавить минуты
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
с.
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Секунды
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Добавить секунды
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Убавить секунды
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Закрыть
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Зарегестирированные активы
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Поиск актива
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Очистить
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Название
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Тикер
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Домен эмитента
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID Актива
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Ошибка загрузки данных об активах
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Активы
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Временная метка
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Показать все »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Условия использования
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Политика конфиденциальности
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Предложения на покупку
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Подтверждено
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Комиссия за размещение актива
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Работаем над обозревателем мемпула и блокчейна для Биткоин-сообщества с упором на рынок комиссий за транзакции и многоуровневую экосистему без какой-либо рекламы, альткоинов или сторонних трекеров.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Корпоративные спонсоры 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Спонсоры из сообщества ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Стать спонсором ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Перейдите на https://mempool.space/sponsor , чтобы стать спонсором
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Интеграции Сообщества
+
+ Enterprise Sponsors 🚀
+ Корпоративные спонсоры 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Спонсоры из сообщества ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Обьединения Сообщества
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Участники проекта
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Участники проекта
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Разработчики проекта
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
О проекте
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- мультисиг из
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Количество транзакций по этому адресу превышает лимит сервера Electrum Рассмотрите возможность просмотра этого адреса на официальном веб-сайте 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Название
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Привязка
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Отвязка
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Сожжено
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Циркулирующий объем
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Ошибка при загрузке данных об активе.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Актив:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Активы
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Поиск актива
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Очистить
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Тикер
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Домен эмитента
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID Актива
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Ошибка загрузки данных об активах
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Оффлайн
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Панель управления
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Статистика
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Документы
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Размер
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Вес
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Следующий блок
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Временная метка
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Размер
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Вес
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Медианная комиссия
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Все комиссии
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Субсидия + комиссии
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Майнер
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Биты
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Корень Меркла
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Сложность
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Нонс
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Заголовок блока в шестнадцатиричном формате
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Подробности
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Ошибка при загрузке данных о блоке.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Блок :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Намайнено
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ Транзакции
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Скопировано!
@@ -2164,850 +2503,126 @@
15
-
- API service
- API сервис
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Конечная точка
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Описание
+
+ Difficulty Adjustment
+ Корректировка сложности
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Остаток
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Предоставляет подробности о корректировке сложности
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Предоставляет список доступных валют для данной базовой валюты.
+
+ Estimate
+ Приблизительно
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Предоставляет список цен открытых офферов для одного рынка.
+
+ Previous
+ Предыдущий
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Предоставляет данные высокого / низкого значения, показателей открытия / закрытия для данного рынка. Это можно использовать для создания свечного графика.
+
+ Current Period
+ Текущий период
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Предоставляет список доступных рынков.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Предоставляет список подробностей открытых оффреов для одного рынка.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Предоставляет 24-часовой ценовой тикер для отдельного рынка или всех рынков
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Предоставляет список завершенных сделок для одного рынка.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Предоставляет периодические данные об объеме в базовой валюте для одного или всех рынков.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Предоставляет статистику по всем транзакциям Bisq.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Предоставляет подробную информацию об адресе. Доступные поля: адрес , chain_stats и mempool_stats . цепь, mempool _stats каждый из которых содержит объект с tx_count , funded_txo_count , funded_txo_sum , spent_txo_count и spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Получить историю транзакций для указанного адреса / хэша скрипта, отсортированную по времени. Предоставляет до 50 транзакций мемпула плюс первые 25 подтвержденных транзакций. Вы можете запросить дополнительные подтвержденные транзакции, используя : last_seen_txid (см. Ниже).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Получить историю подтвержденных транзакций для указанного адреса/хеша скрипта, отсортированную по времени. Предоставляет 25 транзакций на каждой странице. Вы можете запросить больше подтвержденных транзакций, указав последний txid, отображенный предыдущим запросом.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Получить историю неподтвержденных транзакций для указанного адреса/хеша скрипта. Предоставляет до 50 транзакций (не упорядочено по страницам).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Получить список неизрасходованных выходов транзакций, связанных с адресом / хешем скрипта. Доступные поля: txid , vout , значение , и статус (включая статус оплачивающей транзакции). А также valuecommitment поле, которое может появиться на месте value + следующие дополнительные поля : актив / assetcommitment , нонс / noncecommitment , surjection_proof и range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Предоставляет информацию о Liquid-активе.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Предоставляет транзакции, связанные с указанным активом в сети Liquid. Для нативного актива сети предоставляет список транзакций привязки, отвязки и сжигания. Для активов, выпущенных пользователем, предоставляется список транзакций выпуска, перевыпуска и сжигания. Не включает обычные транзакции-переводы актива.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Получите текущий общий объем предложения указанного актива. Для нативного актива (L-BTC) предложение рассчитывается как [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Для выпущенных активов этот показатель рассчитывается как [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Недоступно для активов с неразглашаемой эмиссией. Если указано /decimal, предоставляется предложение в десятичном формате в соответствии с делимостью актива. В противном случае информация предоставляется в базовых единицах.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Получить подробную информацию о блоке. Доступные поля: идентификатор, высота , версия , временная метка , биты , нонс , merkle_root , tx_count , размер , вес , доказательства , и хэш предыдущего блока .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Предоставляет заголовок блока в шестнадцатиричном формате
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Предоставляетт хэш блока, который сейчас находится на : высоте .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Предоставляет сырое представление блока в двоичном формате.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Предоставляет статус подтверждений блока. Доступные поля: in_best_chain (логическое, false для невостребованных блоков), next_best (хеш следующего блока, доступен только для блоков в самой длинной цепочке).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Предоставляет высоту последнего блока.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Предоставляет хеш последнего блока.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Предоставляет транзакцию с индексом : index в указанном блоке.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Предоставляет список всех ID транзакций в блоке
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Предоставляет список транзакций в блоке (до 25 транзакций, начиная с start_index ). Предоставленные транзакции не имеют поля статуса , поскольку у всех транзакций одинаковый статус блока и подтверждения.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Предоставляет 10 самых последних блоков, начиная с конца или с : start_height , если указано.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Предоставляет текущее состояние мемпула в виде спроецированных блоков.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Предоставляет рекомендуемые нами в настоящее время комиссии для новых транзакций.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Предоставляет текущую статистику отставания мемпула.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Получите полный список ID транзакций в мемпуле в виде массива. Порядок, в котором предоставлены ID транзакций произвольный и не соответствует bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Получить список последних 10 транзакций, попавших в мемпул. Каждый объект транзакции содержит упрощенные обзорные данные со следующими полями: txid , комиссия , vsize и value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Предоставляет комиссии предшествующих транзакций и наилучшие комиссии последующей транзакции.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Предоставляет подробную информацию о транзакции. Доступные поля: TXID , версия , Locktime , размер , вес , комиссия , Vin , Vout и статус .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Предоставляет транзакцию, преобразованную в шестнадцатиричную форму
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Предоставляет доказательство включения Меркла для транзакции с использованием формата merkleblock bitcoind .
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Предоставляет доказательство включения Меркла для транзакции в формате Electrum blockchain.transaction.get_merkle.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Предоставляет состояние траты для выхода транзакции. Доступные поля: потрачено, (boolean), txid (optional), vin (optional) и статус (необязательно, статус траты tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Предоставляет статус расходования всех транзакционных выводов.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Предоставляет транзакцию в двоичном формате.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Предоставляет статус подтверждения транзакции. Доступные поля: подтверждено (boolean), block_height (optional) и block_hash (optional)
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Предоставляет :length (длину) последних транзакций Bisq, начиная с :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Транслировать необработанную транзакцию в сеть. Транзакция должна быть представлена в теле запроса в шестнадцатеричном формате. txid будет возвращен в случае успеха.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Push по умолчанию: действие: 'want', data: ['blocks', ...] , чтобы выразить то, что вы хотите запушить. Доступно: блоки , mempool-blocks , live-2h-chart и stats Пуш транзакций, связанных с адресом: 'track-address': '3PbJ ... bF9B' для получения всех новых транзакционных входных или выходных данных, относящихся к данному адресу. Предоставляет массив транзакций. транзакций данного адреса , для новых транзакций мемпула и транзакций блока для транзакций, подтвержденных в новом блоке.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Пример кода
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Установить пакет
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Ответ
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Документация
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Политика конфиденциальности
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3051,25 +2666,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Количество транзакционных vBytes в секунду
+
+ Incoming transactions
+ Входящие транзакции
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Синхронизация бэкенда
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3078,11 +2697,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3092,11 +2711,11 @@
Неподтвержденные
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3106,60 +2725,109 @@
Размер мемпула
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- блоки
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- блок
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Намайнено
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Блоки
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3167,31 +2835,56 @@
Графики
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
Полноэкранный режим
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Документация
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Интервал комиссий
@@ -3201,23 +2894,6 @@
mempool-block.fee-span
-
- Total fees
- Все комиссии
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Следующий блок
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Стек блоков мемпула
@@ -3239,7 +2915,7 @@
Диапазон
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3247,33 +2923,307 @@
Сумма
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Неизвестный
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Обозначается адресом выплаты: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Обозначается тегом coinbase: ' '
+
+ Latest blocks
+ Последние блоки
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3288,14 +3238,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Транзакция в шестнадцатиричном формате
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3306,6 +3255,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, высота блока, хеш или адрес
@@ -3329,7 +3347,7 @@
Спонсор
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3342,7 +3360,7 @@
Запросить счет
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3351,7 +3369,7 @@
Ожидание транзакции ...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3360,7 +3378,7 @@
Донат подтвержден!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3369,7 +3387,7 @@
Спасибо!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3378,7 +3396,7 @@
Мемпул в vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3387,7 +3405,7 @@
Фильтр
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3396,7 +3414,7 @@
Инвертировать
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3405,7 +3423,7 @@
Транзакционные vBytes в секунду (vB / s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3624,21 +3642,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Подтверждено
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Впервые замечен
@@ -3717,26 +3725,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Размер
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Вес
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Locktime
@@ -3774,15 +3762,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3799,7 +3791,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3808,7 +3800,7 @@
(Новые сгенерированные монеты)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3817,7 +3809,7 @@
Привязка
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3826,7 +3818,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3836,7 +3828,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3846,7 +3838,7 @@
Свидетель
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3855,16 +3847,24 @@
Скрипт оплаты P2SH
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
Скрипт свидетеля P2WSH
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3873,7 +3873,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3882,7 +3882,7 @@
Скрипт предыдущего вывода
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3891,29 +3891,16 @@
Предыдущий тип выхода
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Загрузить все
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out в
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3922,7 +3909,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3932,30 +3919,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- данные
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Эта транзакция сэкономила % комиссии за счет использования встроенного SegWit-Bech32.
@@ -4097,38 +4065,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Последние блоки
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- Транзакции
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Последние транзакции
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4137,7 +4083,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4146,7 +4092,7 @@
Комиссия
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4155,7 +4101,7 @@
Подробнее
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4164,7 +4110,7 @@
Скрыть
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4173,7 +4119,7 @@
Мин. комиссия
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4183,7 +4129,7 @@
Очистка
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4193,7 +4139,7 @@
Использование памяти
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4203,75 +4149,95 @@
L-BTC в обращении
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Входящие транзакции
+
+ API service
+ API сервис
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Корректировка сложности
+
+ Endpoint
+ Конечная точка
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Остаток
+
+ Description
+ Описание
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Приблизительно
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Push по умолчанию: действие: 'want', data: ['blocks', ...] , чтобы выразить то, что вы хотите запушить. Доступно: блоки , mempool-blocks , live-2h-chart и stats Пуш транзакций, связанных с адресом: 'track-address': '3PbJ ... bF9B' для получения всех новых транзакционных входных или выходных данных, относящихся к данному адресу. Предоставляет массив транзакций. транзакций данного адреса , для новых транзакций мемпула и транзакций блока для транзакций, подтвержденных в новом блоке.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Предыдущий
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Текущий период
+
+ Code Example
+ Пример кода
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Установить пакет
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Ответ
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf
index 5a4872540..1d368494e 100644
--- a/frontend/src/locale/messages.sl.xlf
+++ b/frontend/src/locale/messages.sl.xlf
@@ -5,16 +5,15 @@
Close
Zapri
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Stran od
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Prejšnji
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Naslednji
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Izberi mesec
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Izberi leto
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Prejšnji mesec
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Naslednji mesec
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Ure
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minute
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Prištej ure
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Odštej ure
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Prištej minute
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Odštej minute
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Sekunde
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Prištej sekunde
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Odštej sekunde
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Zapri
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Registrirana sredstva
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Iskanje sredstev
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Počisti
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Naziv
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Oznaka
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Domena izdajatelja
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID sredstva
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Napaka pri nalaganju podatkov o sredstvih.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Sredstva
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Datum in čas
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Prikaži vse »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Pogoji storitve
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Politika zasebnosti
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Nakup
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Potrjeno
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Provizija za registracijo sredstva
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Raziskovalec blokov in mempool-a razvit za Bitcoin skupnost, osredotočen na trg omrežnin za transakcije in večplastni ekosistem. Brez oglaševanja, alternativnih kriptovalut in sledilcev tretjih ponudnikov.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Sponzorji - podjetja 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Sponzorji - posamezniki ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Postanite sponzor ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Pojdite na https://mempool.space/sponsor za sponzorstvo.
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Integracije
+
+ Enterprise Sponsors 🚀
+ Sponzorji - podjetja 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Sponzorji - posamezniki ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Zavezništva skupnosti
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Sodelujoči
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Člani projekta
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Vzdrževalci
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
O projektu
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig od
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Število transakcij povezanih s tem naslovom presega omejitve Electrum strežnika Poskusite si ogledati ta naslov na uradni spletni strani 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Naziv
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Uničeno (burned)
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Znesek v obtoku
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Napaka pri nalaganju podatkov o sredstvu.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Sredstvo:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Sredstva
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Iskanje sredstev
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Počisti
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Oznaka
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Domena izdajatelja
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID sredstva
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Napaka pri nalaganju podatkov o sredstvih.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Brez povezave
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Pregledna plošča
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Statistika
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Dokumentacija
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Velikost
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Utež
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Naslednji blok
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Datum in čas
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Velikost
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Utež
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Mediana omrežnin
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Skupaj omrežnin
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Nagrada + omrežnine:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Rudar
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merkle koren
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Težavnost
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Glava bloka (Hex)
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Podrobnosti
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Napaka pri nalaganju podatkov bloka.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Blok :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Narudarjeno
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Kopirano!
@@ -2164,850 +2503,126 @@
15
-
- API service
- API storitev
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Končna točka
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Opis
+
+ Difficulty Adjustment
+ Prilagoditev težavnosti
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Preostalo
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Vrne podrobnosti o prilagoditvi težavnosti.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Vrne seznam razpoložljivih valut (valutnih parov) za podano osnovno valuto.
+
+ Estimate
+ Ocena
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Vrne seznam cen odprtih naročil za podan trg.
+
+ Previous
+ Prejšnja
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Vrne najvišji/najnižji/odpiralni/zadnji tečaj za podan trg. Te podatke lahko uporabimo za ustvarjanje svečnega grafikona.
+
+ Current Period
+ Trenutno obdobje
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Vrne seznam razpoložljivih trgov.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Vrne seznam odprtih naročil za podan trg.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Vrne podatke o ceni (ticker, 24h) na podanem trgu ali vseh trgih.
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Vrne seznam zaključenih poslov za izbran trg.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Vrne periodične podatke o obsegu trgovanja v osnovni valuti za izbran trg ali vse trge.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Vrne statistične podatke o vseh Bisq transakcijah.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Vrne podatke o naslovu. Razpoložljiva polja: address , chain_stats , in mempool_stats . chain,mempool _stats vsebujeta objekt z tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , in spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Pridobi zgodovino transakcij za podan naslov/scripthash, urejeno po času, najnovejša na začetku. Vrne do 50 mempool ter prvih 25 potrjenih transakcij. Z uporabo :last_seen_txid je mogoče pridobiti več potrjenih transakcij (glej spodaj).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Pridobi zgodovino potrjenih transakcij za podan naslov/scripthash, urejeno po času, najnovejša na začetku. Vrne 25 transakcij na stran. Več jih je mogoče pridobiti z navedbo zadnjega vrnjenega txid-ja.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Pridobi zgodovino nepotrjenih transakcij za podan naslov/scripthash. Vrne do 50 transakcij (brez ostranjevanja, angl. paging).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Vrne seznam neporabljenih izhodov transakcij povezanih z naslovom/scripthash. Razpoložljiva polja: txid , vout , value , in status (stanje potrditve transakcije). Polje valuecommitment lahko nadomešča value . Dodatna polja: asset / assetcommitment , nonce / noncecommitment , surjection_proof , in range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Vrne podatke o Liquid sredstvu.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Vrne transakcije povezane s podanim Liquid sredstvom. Za izvorno sredstvo omrežja, vrne seznam peg in, peg out, in burn transakcij. Za uporabniško izdana sredstva, vrne seznam izdajnih, transakcij ponovne izdaje in burn transakcij. Ne vključuje rednih transakcij prenosa tega sredstva.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Pridobi trenutni znesek v obtoku za podano sredstvo. Za izvorno sredstvo (L-BTC), je izračunan kot [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Za izdana sredstva pa [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Ni na voljo za sredstva z zaupnim zneskom izdaje. Če je podan /decimal, vrne znesek na število decimalnih mest sredstva natančno. Sicer vrnjeno v osnovnih enotah.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Vrne podatke o bloku. Razpoložljiva polja: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , in previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Vrne šestnajstiško vrednost glave bloka.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Vrne zgoščeno vrednost (hash) bloka na višini :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Vrne neobdelane podatke o bloku v binarni obliki.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Vrne stanje potrditve bloka. Razpoložljiva polja: in_best_chain (boolean, false za osirotele bloke, angl. orphaned), next_best (zgoščena vrednost oz. hash naslednjega bloka, na voljo samo za bloke v veljavni verigi).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Vrne višino zadnjega bloka.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Vrne zgoščeno vrednost (hash) zadnjega bloka.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Vrne transakcijo z zaporedno številko :index znotraj podanega bloka.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Vrne seznam vseh txid-jev v bloku.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Vrne seznam transakcij v bloku (do 25 transakcij z začetkom start_index ). Podatki o transakciji ne vsebujejo polja status , saj gre za transakcije istega bloka z istim številom potrditev.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Vrne 10 najnovejših blokov z najvišjim na začetku ali od višine :start_height , če je podana.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Vrne trenutni mempool, kot projekcijo blokov.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Vrne trenutno predlagano omrežnino za nove transakcije.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Vrne trenutno statistiko mempoola.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Vrne celoten seznam txid-jev v mempoolu v obliki polja. Vrstni red txid-jev je arbitraren in se ne ujema z bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Vrne seznam zadnjih 10 transakcij dodanih v mempool. Vsak objekt transakcije vsebuje naslednja polja: txid , fee , vsize , in value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Vrne prednike in najboljšo omrežnino za potomce transakcije.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Vrne podatke o transakciji. Razpoložljiva polja: txid , version , locktime , size , weight , fee , vin , vout , in status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Vrne transakcijo v šestnajstiški obliki.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Vrne merkle dokaz o vsebovanosti za transakcijo (angl. merkle inclusion proof), v bitcoind's merkleblock obliki.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Vrne merkle dokaz o vsebovanosti za transakcijo (angl. merkle inclusion proof), v Electrum's blockchain.transaction.get_merkle obliki.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Vrne stanje porabe izhoda transakcije. Razpoložljiva polja: spent (boolean), txid (opcijsko), vin (opcijsko) in status (opcijsko, stanje potrditve transakcije).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Vrne stanje porabe vseh izhodov transakcije.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Vrne transakcijo v binarni obliki.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Vrne stanje potrditve transakcije. Razpoložljiva polja: confirmed (boolean), block_height (opcijsko) in block_hash (opcijsko).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Vrne :length zadnjih Bisq transakcij, z začetkom od :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- V omrežju objavi neobdelano (raw) transakcijo. Transakcija mora biti podana v telesu zahteve v šestnajstiški obliki. Ob uspehu bo vrnjen txid .
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Začetni potisk: action: 'want', data: ['blocks', ...] za izbiro potisnih podatkov. Razpoložljivo: blocks , mempool-blocks , live-2h-chart in stats . Potisk transakcij povezanih z naslovom: 'track-address': '3PbJ...bF9B' za prejem vseh novih transakcij, ki vsebujejo ta naslov v vhodu ali izhodu. Vrne polje transakcij. address-transactions za nove transakcije v mempool-u in block-transactions za potrjene transakcije v novem bloku.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Primer
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Namestitev paketa
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Odziv
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Dokumentacija
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Politika zasebnosti
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBajtov na sekundo:
+
+ Incoming transactions
+ Pretočnost
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Sinhronizacija zaledja (backend)
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
Nepotrjeno
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
Mempool velikost
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- blokov
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- blok
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Narudarjeno
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Bloki
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
Grafi
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV pogled
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Dokumentacija
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Razpon omrežnin
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Skupaj omrežnin
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Naslednji blok
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Sklad mempool blokov
@@ -3236,7 +2912,7 @@
Razpon
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
Skupno
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Neznano
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Prepoznano po naslovu za izplačilo: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Prepoznano po coinbase oznaki: ' '
+
+ Latest blocks
+ Najnovejši bloki
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Šestnajstiška vrednost
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, višina bloka, hash ali naslov
@@ -3326,7 +3344,7 @@
Sponzorstvo
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
Ustvari račun
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
Čakanje na transakcijo...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
Prispevek potrjen!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
Hvala vam!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
Mempool v vBajtih (sat/vBajt)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
Filter
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
Obrni
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
Pretočnost, vBajtov na sekundo (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Potrjeno
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Prejeto
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Velikost
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Utež
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Locktime
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(Novo ustvarjeni kovanci)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
P2SH redeem skripta
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH witness skripta
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
Skripta prejšnjega izhoda
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
Tip prejšnjega izhoda
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Prikaži vse
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out v
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- podatki
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Ta transakcija je prihranila % omrežnine z uporabo native SegWit-Bech32.
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Najnovejši bloki
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Najnovejše transakcije
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
Omrežnina
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
Razširi
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
Strni
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
Najnižja omrežnina
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
Prag
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
Velikost
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
L-BTC v obtoku
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Pretočnost
+
+ API service
+ API storitev
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Prilagoditev težavnosti
+
+ Endpoint
+ Končna točka
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Preostalo
+
+ Description
+ Opis
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Ocena
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Začetni potisk: action: 'want', data: ['blocks', ...] za izbiro potisnih podatkov. Razpoložljivo: blocks , mempool-blocks , live-2h-chart in stats . Potisk transakcij povezanih z naslovom: 'track-address': '3PbJ...bF9B' za prejem vseh novih transakcij, ki vsebujejo ta naslov v vhodu ali izhodu. Vrne polje transakcij. address-transactions za nove transakcije v mempool-u in block-transactions za potrjene transakcije v novem bloku.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Prejšnja
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Trenutno obdobje
+
+ Code Example
+ Primer
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Namestitev paketa
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Odziv
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf
index 42cb9e99b..a6ef7875f 100644
--- a/frontend/src/locale/messages.sv.xlf
+++ b/frontend/src/locale/messages.sv.xlf
@@ -5,16 +5,16 @@
Close
Stäng
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Slide of
+ Slide of
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
Previous
Föregående
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Näst
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Select month
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Select year
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +62,216 @@
Previous month
Föregående månad
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Next month
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Hours
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Minuter
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Öka timmar
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Minska timmar
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Öka minuter
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Minska minuter
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Sekunder
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Öka sekunder
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Minska sekunder
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Stäng
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Registrerade assets
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Sök asset
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Rensa
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Namn
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Utfärdardomän
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- Asset ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Fel vid inläsning av assets-data.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Assets
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +343,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +368,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +418,7 @@
block.hash
-
+
Timestamp
Tidsstämpel
@@ -535,14 +431,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +501,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +534,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +549,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +570,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +733,9 @@
bisq-dashboard.market-price-title
-
- View all »
- Visa alla »
+
+ View more »
+ Visa mer »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +745,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Användarvillkor
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Integritetspolicy
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Köpbud
@@ -943,6 +908,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +978,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1012,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1034,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1046,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1088,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1110,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1209,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1233,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Bekräftad
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Asset listningsavgift
@@ -1412,38 +1407,20 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- En mempool och blockchain-utforskare för Bitcoin-communityt med fokus på marknaden f;r transaktionsavgifter och multi-lager ekosystem utan reklam, altcoins eller tredjepartsspårare.
+
+ 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.
src/app/components/about/about.component.html
- 13,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Företagssponsorer 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Communitysponsorer ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Bli sponsor ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1429,74 @@
Navigera till https://mempool.space/sponsor för att bidra
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Communityintegrationer
+
+ Enterprise Sponsors 🚀
+ Företagssponsorer 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Communitysponsorer ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+ Självhostade integrationer
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+ Plånboksintegrationer
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Communityallianser
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+ Projektöversättare
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Projektbidragare
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1505,7 @@
Projektmedlemmar
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1514,7 @@
Projektunderhållare
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1523,28 @@
Om
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig av
+
+ Multisig of
+ Multisig av
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1582,9 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Antalet transaktioner på den här adressen överskrider Electrum-servergränsen Överväg att titta på den här adressen på den officiella Mempool-webbsajten 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å 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1602,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1638,22 @@
Liquid Asset page title
asset
-
+
Name
Namn
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1690,7 @@
Peggad in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1700,7 @@
Peggad ut
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1710,7 @@
Bränt antal
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1720,11 @@
Cirkulerande antal
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1761,7 @@
Fel vid laddandet av asset data
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1770,144 @@
Asset:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+ Grupp av assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Assets
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+ Utvalda
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+ Alla
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Sök asset
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Rensa
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Utfärdardomän
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ Asset ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Fel vid inläsning av assets-data.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Frånkopplad
@@ -1777,7 +1917,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1934,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1951,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1821,18 +1961,18 @@
Dashboard
- Instrumentbräda
+ Instrumentbräde
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1981,7 @@
Stats
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1990,190 @@
Dokumentation
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+ Block avgiftnivåer
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+ Blockavgifter
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+ Avgifter
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+ Blockbelöningar
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ Reward
+ Belöning
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 15,17
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+ Blockstorlekar och vikt
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Storlek
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Viktenheter
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Nästa block
@@ -1873,6 +2185,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2200,6 @@
Previous Block
-
- Timestamp
- Tidsstämpel
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Storlek
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Viktenheter
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Medianavgift
@@ -1957,7 +2226,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2254,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2274,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2317,15 @@
Avgifter totalt
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2335,11 @@
Subvention + avgifter:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2349,7 @@
Miner
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2358,7 @@
Bitar
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2367,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2376,27 @@
Svårighet
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2405,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2414,7 @@
Block Header Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2423,7 @@
Detaljer
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2437,7 @@
Kunde inte ladda blockdata.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2446,76 @@
Block :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Minead
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Kopierad!
@@ -2164,850 +2524,131 @@
15
-
- API service
- API-tjänst
+
+ Adjusted
+ Justerad
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Slutpunkt
+
+ Change
+ Förändring
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Beskrivning
+
+ Difficulty Adjustment
+ Svårighetsjustering
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Återstående
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+ block
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Returnerar information om svårighetsjustering.
+
+ block
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Ger en lista över tillgängliga valutor för en given basvaluta.
+
+ Estimate
+ Estimat
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Tillhandahåller en lista över öppna erbjudanden för en enskild marknad.
+
+ Previous
+ Föregående
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Ger hög/låg/löppning/stängning data för en given marknad. Detta kan användas för att generera ljusstakediagram.
+
+ Current Period
+ Nuvarande period
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Ger en lista över tillgängliga marknader.
+
+ Next Halving
+ Nästa halvering
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Tillhandahåller en lista med detaljer över öppna erbjudanden för en enskild marknad.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Ger 24-timmars pristicker för en enskild marknad eller alla marknader
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Ger en lista över genomförda affärer för en enskild marknad.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Tillhandahåller periodiska volymdata i termer av basvaluta för en eller alla marknader.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Returnerar statistik om alla Bisq-transaktioner.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Returnerar information om en adress. Tillgängliga fält: address , chain_stats , och mempool_stats . chain,mempool _stats där varje innehåller ett objekt med tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , och spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Få transaktionshistorik för den angivna adressen/scripthash, sorterad med senaste först. Returnerar upp till 50 mempool-transaktioner plus de första 25 bekräftade transaktionerna. Du kan begära fler bekräftade transaktioner med :last_seen_txid (se nedan).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Få bekräftad transaktionshistorik för den angivna adressen/scripthash, sorterad efter nyaste först. Returnerar 25 transaktioner per sida. Mer kan begäras genom att ange den sista txid ifrån föregående fråga.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Få obekräftad transaktionshistorik för den angivna adressen/scripthash. Returnerar upp till 50 transaktioner (ingen pagenering).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Hämta listan över outnyttjade transaktionsutdata kopplade till adressen/scripthash. Tillgängliga fält: TXID , Vout , värde och status (med status av finansierings-TX). Det finns också en valuecommitment fält som kan förekomma i stället för value , plus följande ytterligare fält: tillgångar / assetcommitment , nonce / noncecommitment , surjection_proof och range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Returnerar information om en Liquid asset.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Returnerar transaktioner associerade med den angivna Liquid asseten För nätverkets inhemska asset, returneras en lista över peg-in, peg-out och burn-transaktioner. För användarutgivna assets returneras en lista över utgivnings-, återutgivnings- och burn-transaktioner. Inkluderar inte vanliga transaktioner som överför denna asset.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Hämta nuvarande utbud för den specifika asseten. För den inhemska asseten (L-BTC), är detta kalkylerat som [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. För utgivna assets, är detta kalkylerat som [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Inte tillgängligt för assets med blind utgivelse. Om /decimal är specifierat, returnera utbudet decimalt enligt assetens delbarhet. Annars, returnera i basenhet.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Returnerar information om ett block. Tillgängliga fält: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , och previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Returnerar block headern hexkodad.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Returnerar hashen för blocket som för närvarande är :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Returnerar blocket i rå binär form.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Returnerar bekräftelsestatus för ett block. Tillgängliga fält: in_best_chain (boolean, false för föräldralösa block), next_best (den enda tillgängliga hashen för nästa kedjeblock, det enda tillgängliga för nästa block).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Returnerar höjden på det senaste blocket.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Returnerar hashen för det senaste blocket.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Returnerar transaktionen vid index :index inom det angivna blocket.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Returnerar en lista över alla txids i blocket.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Returnerar en lista över transaktioner i blocket (upp till 25 transaktioner som börjar på start_index ). Transaktioner som returneras här har inte fältet status , eftersom alla transaktioner delar samma block och bekräftelsestatus.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Returnerar de 10 senaste blocken som börjar vid spetsen eller vid :start_height om det anges.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Returnerar aktuell mempool som projicerade block.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Returnerar våra för närvarande föreslagna avgifter för nya transaktioner.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Returnerar aktuell mempool eftersläpningsstatistik.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Få den fullständiga listan över TXIDs i mempoolen som en matris. Ordningen på TXID är godtycklig och matchar inte bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Få en lista över de senaste 10 transaktionerna för att komma in i mempoolen. Varje transaktion objekt innehåller förenklad översikt data med följande fält: txid , fee , vsize , and value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Returnerar förfäderna och de bästa avkommorna för en transaktion.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Returnerar information om en transaktion. Tillgängliga fält: txid , version , locktime , size , weight , fee , vin , vout , and status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Returnerar en transaktion serialiserad som en hash.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Returnerar ett merkle-inkluderingsbevis för transaktionen med bitcoinds merkleblock -format.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Returnerar ett merkle-inkluderingsbevis för transaktionen med Electrums blockchain.transaction.get_merkle-format.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Returnerar utgiftsstatus för en transaktionsutdata. Tillgängliga fält: spent (boolean), txid (valfritt), vin (optional), och status (valfritt, statusen för spenderingstransaktionen).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Returnerar spenderingsstatus för transaktionens alla outputs.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Returnerar en transaktion som binär data.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Returnerar bekräftelsestatusen för en transaktion. Tillgängliga fält: confirmed (boolean), block_height (valfritt), och block_hash (valfritt).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Returnerar :length på de senaste Bisq-transaktionerna, med start från :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Sänd en råtransaktion till nätverket. Transaktionen ska tillhandahållas som hexadecimal i begärandekroppen. txid kommer att returneras vid framgång.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Standard push: action: 'want', data: ['blocks', ...] för att uttrycka vad du vill ha pushat. Tillgängligt: blocks , mempool-blocks , live-2h-chart , och stats . Pusha transaktioner relaterat till address: 'track-address': '3PbJ...bF9B' för att ta emot alla nya transaktioner innehållandes den addressen som input eller output. Returnerar en lista av transaktioner. address-transactions för nya mempooltransaktioner, och block-transactions för nya blockbekräftade transaktioner.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Kodexempel
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Installera paketet
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Svar
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Dokumentation
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Integritetspolicy
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2689,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes per sekund:
+
+ Incoming transactions
+ Inkommande transaktioner
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Backend synkroniserar
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2720,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2734,11 @@
Obekräftade
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2748,118 @@
Mempoolstorlek
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- block
+
+ Mining
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- block
+
+ Pools Ranking
+ Poolranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Minead
+
+ Pools Dominance
+ Pooldominans
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Block
+
+ Hashrate & Difficulty
+ Hashrate & svårighet
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+ Historisk pooldominans
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+ Indexerar block
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+ Indexerar nätverkets hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+ Indexerar poolhashrates
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2867,57 @@
Grafer
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+ Mininginstrumentbräde
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV-vy
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Dokumentation
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Avgiftspann
@@ -3198,23 +2927,6 @@
mempool-block.fee-span
-
- Total fees
- Avgifter totalt
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Nästa block
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Hög av mempoolblock
@@ -3236,7 +2948,7 @@
Spann
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2956,329 @@
Summa
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Okänd
+
+ Reward stats
+ Belöningsstats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Identifierad av utbetalningsadress: ' '
+
+ (144 blocks)
+ (144 block)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Identifierad av Coinbase tagg: ' '
+
+ Latest blocks
+ Senaste blocken
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+ Justeringar
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+ Pools tur (1v)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+ Block (1v)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+ Antal pooler (1v)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+ Ranking
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+ Tomma block
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+ Alla miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+ Miningpooler
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+ block
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+ Taggar
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+ Visa alla
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+ Göm
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+ Beräknad
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+ Rapporterad
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+ Tur
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+ Mineade block
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+ 1v
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+ Coinbasetagg
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3293,14 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Transaktionshex
+
+ Transaction hex
+ Transaktions-hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3311,81 @@
transaction.hex
+
+ Miners Reward
+ Minerbelöning
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+ Mängd utbetalat senaste 144 blocken
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward Per Tx
+ Belöning 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+ Genomsnittlig minerbelöning per transaktion senaste 144 blocken
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+ Avgifter betalade i genomsnitt per transaktion senaste 144 block
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, blockhöjd, hash eller address
@@ -3326,7 +3409,7 @@
Sponsra
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3422,7 @@
Begär faktura
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3431,7 @@
Väntar på transaktionen...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3440,7 @@
Donation bekräftad!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3449,7 @@
Tack!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3458,7 @@
Mempool i vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3467,7 @@
Filter
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3476,7 @@
Invertera
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3485,7 @@
Transaktioner i vBytes per sekund (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3704,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Bekräftad
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Först sedd
@@ -3714,26 +3787,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Storlek
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Viktenheter
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Locktime
@@ -3771,15 +3824,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3853,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3862,7 @@
(Nyskapade mynt)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3871,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3880,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3890,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3900,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3909,25 @@
P2SH redeem script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH witness script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3936,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3945,7 @@
Föregående outputscript
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3954,16 @@
Föregående output-typ
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Ladda alla
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out till
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3972,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3982,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Denna transaktion sparade % på avgifter genom att använda native SegWit-Bech32
@@ -4094,38 +4128,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Senaste blocken
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Senaste transaktionerna
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4146,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4155,7 @@
Avgift
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4164,7 @@
Expandera
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4173,7 @@
Kollapsa
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4182,7 @@
Minimumavgift
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4192,7 @@
Förkastar
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4202,7 @@
Minnesanvändning
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4212,95 @@
L-BTC i cirkulation
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Inkommande transaktioner
+
+ API service
+ API-tjänst
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Svårighetsjustering
+
+ Endpoint
+ Slutpunkt
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Återstående
+
+ Description
+ Beskrivning
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Estimat
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Standard push: action: 'want', data: ['blocks', ...] för att uttrycka vad du vill ha pushat. Tillgängligt: blocks , mempool-blocks , live-2h-chart , och stats . Pusha transaktioner relaterat till address: 'track-address': '3PbJ...bF9B' för att ta emot alla nya transaktioner innehållandes den addressen som input eller output. Returnerar en lista av transaktioner. address-transactions för nya mempooltransaktioner, och block-transactions för nya blockbekräftade transaktioner.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Föregående
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Nuvarande period
+
+ Code Example
+ Kodexempel
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Installera paketet
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Svar
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.th.xlf b/frontend/src/locale/messages.th.xlf
index f9fa78b7b..e522b499f 100644
--- a/frontend/src/locale/messages.th.xlf
+++ b/frontend/src/locale/messages.th.xlf
@@ -5,16 +5,15 @@
Close
ปิด
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- สไลด์ จาก
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
ก่อนหน้า
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
ถัดไป
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
เลือกเดือนที่ต้องการ
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
เลือกปีที่ต้องการ
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
เดือนก่อนหน้า
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
เดือนถัดไป
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
ชั่วโมง
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
นาที
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
ชั่วโมงที่เพิ่มขึ้น
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
ชั่วโมงที่ลดลง
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
นาทีที่เพิ่มขึ้น
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
นาทีที่ลดลง
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
วินาที
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
วินาทีที่เพิ่มขึ้น
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
วินาทีที่ลดลง
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
ปิด
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- สินทรัพย์สินที่จดทะเบียน
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- ค้นหาสินทรัพย์
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- ล้าง
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- ชื่อ
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- ผู้จดโดเมน
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ไอดีของสินทรัพย์
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- เกิดข้อผิดพลาดในการโหลดข้อมูลสินทรัพย์
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- สินทรัพย์
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
เวลา
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- ดูทั้งหมด »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
เงื่อนไขการให้บริการ
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ นโยบายความเป็นส่วนตัว
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
เสนอซื้อ
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ ได้รับการยืนยัน
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
ค่าธรรมเนียมในการเพิ่มรายการทรัพย์สิน
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Blockchain Explorer สำหรับชุมชนบิตคอยน์ โดยมุ่งเน้นไปที่การแสดงค่าธรรมเนียม, ธุรกรรมต่างๆ โดยปราศจากโฆษณาและการเก็บข้อมูล
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- ผู้สนับสนุนระดับองค์กร 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- ผู้สนับสนุน ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
ร่วมเป็นผู้สนับสนุน❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
โปรดไปที่ https://mempool.space/sponsor เพื่อสนับสนุนเรา
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- โปรเจคที่ร่วมมือกับเรา
+
+ Enterprise Sponsors 🚀
+ ผู้สนับสนุนระดับองค์กร 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ ผู้สนับสนุน ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
พันธมิตรของเรา
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
ผู้พัฒนาโปรเจค
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
สมาชิกในโปรเจคนี้
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
ผู้ดูแลโปรเจค
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
เกี่ยวกับ
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- multisig จาก
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- จำนวนธุรกรรมเกินกว่าที่เซิฟเวอร์ Electrum กำหนดไว้ คุณสามารถเรียกดูแอดเดรสนี้ได้ในเว็ปไซต์ 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
ชื่อ
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Pegged เข้า
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Pegged ออก
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
จำนวนที่เผา
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
อุปทานหมุนเวียน
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
เกิดข้อผิดพลาดในการโหลดข้อมูลสินทรัพย์
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
สินทรัพย์:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ สินทรัพย์
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ ค้นหาสินทรัพย์
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ ล้าง
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ ผู้จดโดเมน
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ไอดีของสินทรัพย์
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ เกิดข้อผิดพลาดในการโหลดข้อมูลสินทรัพย์
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
ออฟไลน์
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
หน้าหลัก
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
สถิติ
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
เอกสาร
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ ขนาด
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ น้ำหนัก
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
บล็อกถัดไป
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- เวลา
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- ขนาด
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- น้ำหนัก
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
ค่าธรรมเนียมกลาง
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
ค่าธรรมเนียมทั้งหมด
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
ธุรกรรม + ค่าธรรมเนียม:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
ผู้ขุด
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
บิต
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
ความยาก
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Hex ส่วนหัวบล็อก
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
รายละเอียด
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
เกิดข้อผิดพลาดในการโหลดข้อมูลบล็อก
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
บล็อก :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ ถูกขุดเมื่อ
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ TXs
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
คัดลอก!
@@ -2164,850 +2503,126 @@
15
-
- API service
- บริการ API
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- ปลายทาง
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- คำอธิบาย
+
+ Difficulty Adjustment
+ การเปลี่ยนแปลงระดับความยาก
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ คงเหลือ
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- ส่งกลับรายละเอียดเกี่ยวกับการปรับระดับความยาก
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- แสดงรายการสกุลเงินที่ใช้ได้สำหรับสกุลเงินหลักที่กำหนด
+
+ Estimate
+ ประมาณ
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- แสดงรายการราคาเสนอขายสำหรับตลาด
+
+ Previous
+ ก่อนหน้า
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- แสดงข้อมูล สูง/ต่ำ/เปิด/ปิด สำหรับตลาดที่กำหนด สามารถใช้เพื่อสร้างแผนภูมิแท่งเทียนได้
+
+ Current Period
+ ช่วงเวลาปัจจุบัน
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- แสดงรายการตลาดที่มีอยู่
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- แสดงรายการรายละเอียดข้อเสนอที่เปิดอยู่สำหรับตลาด
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- แสดงทิกเกอร์ราคา 24 ชั่วโมงสำหรับตลาดใดๆหรือทุกตลาด
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- แสดงรายการการซื้อขายที่เสร็จสมบูรณ์สำหรับตลาดใดๆ
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- แสดงข้อมูลปริมาณการซื้อขายในรูปแบบของสกุลเงินหลักสำหรับตลาดใดๆหรือทุกตลาด
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- ตอบกลับเป็นสถิติเกี่ยวกับธุรกรรม Bisq ทั้งหมด
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- ตอบกลับข้อมูลเกี่ยวกับแอดเดรส. ที่ใช้งานได้: แอดเดรส , สถานะ_บล็อกเชน , และ สถานะ_mempool . บล็อกเชน, สถานะ _mempool โดยแต่ละอันจะมี object ที่มี tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , และ spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- แสดงประวัติการทำธุรกรรมสำหรับ ที่อยู่/scripthash ที่ระบุ โดยเรียงลำดับจากใหม่ที่สุดก่อน ตอบกลับเป็นธุรกรรม mempool สูงสุด 50 รายการ รวมกับธุรกรรมที่ได้รับการยืนยัน 25 รายการแรก คุณสามารถขอธุรกรรมที่ได้รับการยืนยันเพิ่มเติมได้โดยใช้ :last_seen_txid (ดูด้านล่าง)
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- แสดงการยืนยันประวัติการทำธุรกรรมสำหรับ แอดเดรส/scripthash ที่ระบุ โดยเรียงลำดับที่ใหม่ที่สุดก่อน ส่งกลับธุรกรรม 25 รายการต่อหน้า สามารถขอเพิ่มเติมได้โดยระบุ txid สุดท้ายที่เห็นในข้อความค้นหาก่อนหน้า
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- แสดงประวัติการทำธุรกรรมที่ไม่ได้รับการยืนยันสำหรับ แอดเดรส/scripthash ที่ระบุ โดยแสดงค่าธุรกรรมสูงสุด 50 รายการ (ไม่มีการเพจ)
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- ตอบกลับเป็นรายการธุรกรรมที่ยังไม่ได้มีการใช้จ่ายโดยอิงจากที่อยู่/scripthash ที่ใช้งานได้: txid , vout , ค่า , และ สถานะ (ตอบกลับสถานะ tx). อีกทั้งยังมี valuecommitment โดยอาจจะแสดงให้เห็นใน ค่า , และมีข้อมูลเพิ่มเติม: สินทรัพย์ / assetcommitment , nonce / noncecommitment , surjection_proof , และ range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- ส่งกลับข้อมูลเกี่ยวกับสภาพคล่องของทรัพสินย์
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- ส่งกลับธุรกรรมที่เกี่ยวข้องกับสินทรัพย์สภาพคล่อง, สำหรับสินทรัพย์ดั้งเดิมของเครือข่าย, ส่งคืนรายการของธุรกรรมการ peg in, peg out และธุรกรรมการเผา สำหรับสินทรัพย์ที่ผู้ใช้ออกให้ จะส่งคืนเป็นรายการการออก การออกใหม่ และธุรกรรมการเผา ไม่รวมธุรกรรมปกติที่โอนสินทรัพย์นี้
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- แสดงค่าอุปทานทั้งหมดในปัจจุบันของสินทรัพย์ที่ระบุ สำหรับสินทรัพย์ดั้งเดิม (L-BTC) จะคำนวณเป็น [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount สำหรับสินทรัพย์ที่ออกให้ จะคำนวณเป็น [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount , ไม่สามารถใช้ได้สำหรับสินทรัพย์ที่มีการปิดบัง, หากระบุ /ทศนิยม จะส่งส่งคืนอุปทานเป็นทศนิยมตามการหารของสินทรัพย์ มิฉะนั้น ส่งคืนในหน่วยฐาน
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- ตอบกลับข้อมูลเกี่ยวกับบล็อก. ที่ใช้งานได้: ไอดี , ความสูง , เวอร์ชั่น , ประทับเวลา , บิต , nonce , merkle_root , tx_count , ขนาด , น้ำหนัก , พิสูจ , และ แฮชของบล็อกก่อนหน้า .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- ส่งกลับส่วนหัวของบล็อกที่มีการเข้ารหัสฐานสิบหก
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- ตอบกลับเป็นแฮชของบล็อกในขณะนี้ :ความสูง .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- ส่งกลับการแสดงค่าบล็อกในรูปแบบไบนารี
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- ตอบกลับเป็นสถานะการยืนยันของบล็อก ฟิลด์ที่ใช้งานได้: in_best_chain (ค่าความจริง, เท็จสำหรับบล็อกเดี่ยว), next_best (แฮชของบล็อกถัดไป, ใช้ได้เฉพาะบล็อกที่ดีที่สุดในบล็อกเชน).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- ส่งกลับความสูงของบล็อกก่อนหน้า
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- ส่งกลับแฮชของบล็อกก่อนหน้า
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- ตอบกลับเป็นธุรกรรมที่สารบัญนั้น :สารบัญ ภายในบล็อกที่กำหนด
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- ตอบกลับเป็นรายการ txids ทั้งหมดในบล็อก
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- ตอบกลับเป็นรายการของธุรกรรมภายในบล็อก (สูงสุด 25 ธุรกรรมโดยเริ่มต้นที่ สารบัญ_เริ่มต้น ) ธุรกรรมที่ส่งคืนที่นี่ไม่มีฟิลด์ สถานะ ฟิลด์ เนื่องจากธุรกรรมทั้งหมดมีสถานะบล็อกและการยืนยันเดียวกัน
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- ตอบกลับเป็นบล็อกใหม่ล่าสุด 10 บล็อกโดยเริ่มต้นจากบล็อกล่าสุดหรือจาก :ความสูง_เริ่มต้น หากมีการกำหนดค่า
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- ตอบกลับ mempool ปัจจุบันเป็นบล็อกที่แสดงอยู่
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- ตอบกลับเป็นค่าธรรมเนียมที่แนะนำในขณะนั้นสำหรับธุรกรรมใหม่
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- ส่งกลับสถานะ mempool ย้อนหลัง
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- รายการ txids ทั้งหมดใน mempool เป็นอาร์เรย์ลำดับของ txids เป็นไปตามอำเภอใจและไม่ตรงกับ bitcoind
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- ตอบกลับเป็นชุดข้อมูลของธุรกรรม 10 รายการล่าสุด โดยแต่ละข้อมูลธุรกรรมจะมีข้อมูลโดยรวม ดังนี้ : txid , ค่าธรรมเนียม , vsize และ ค่า
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- ตอบกลับเป็นผู้สืบทอดและค่าธรรมบรรพบุรุษที่ดีที่สุดสำหรับธุรกรรม
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- ตอบกลับเป็นข้อมูลเกี่ยวกับธุรกรรม ฟิลด์ที่ใช้งานได้: txid , เวอร์ชั่น , เวลาล็อก , ขนาด , น้ำหนัก , ค่าธรรมเนียม , vเข้า , vออก , และ สถานะ .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- ส่งกลับธุรกรรมที่จัดลำดับเป็นเลขฐานสิบหก
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- ตอบกลับเป็นการพิสูจน์การรวม Merkle สำหรับธุรกรรมโดยใช้รูปแบบ bitcoind ของบล็อก Merkle
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- ตอบกลับเป็นการพิสูจน์การรวม Merkle สำหรับธุรกรรมโดยใช้รูปแบบ Electrum's blockchain.transaction.get_merkle
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- ตอบกลับเป็นสถานะการใช้จ่ายของเอาต์พุตธุรกรรม ฟิลด์ที่ใช้งานได้: ใช้ไป (ค่าความจริง), txid (ไม่จำเป็น), vเข้า (ไม่จำเป็น), และ สถานะ (ไม่จำเป็น, สถานะของ tx ที่ถูกใช้จ่ายไป)
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- ตอบกลับสถานะการใช้จ่ายของของธุรกรรมทั้งหมด
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- ตอบกลับธุรกรรมในรูปแบบของไบนารี
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- ตอบกลับสถานะการยืนยันของธุรกรรม ที่ใช้งานได้: ยืนยันแล้ว (บูลีน), block_height (ตัวเลือกเสริม) และ block_hash (ตัวเลือกเสริม)
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- ตอบกลับ: ความยาวบล็อกบิตคอยน์ที่มีธุรกรรม Bisq ล่าสุด โดยเริ่มจาก :สารบัญ
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- ประกาศธุรกรรมแบบ raw ลงบนโครงข่าย ธุรกรรมควรจะอยู่ในรูปแบบของ hex เมื่อทำการประกาศ txid จะถูกตอบกลับหากสำเร็จ
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- ค่าตอบกลับพื้นฐาน: การกระทำ: 'ต้องการ', ข้อมูล: ['บล็อก', ...] เพื่ออธิบายค่าที่ต้องการตอบกลับ. ที่ใช้งานได้: บล็อก , บล็อก-mempool , ชาตสด-2h , และ สถิติ . ส่งธุรกรรมไปยังแอดเดรส: 'track-address': '3PbJ...bF9B' เพื่อที่จะได้รับธุรกรรมใหม่ทั้งหมดที่มี input/output ของแอดเดรสนั้น. ตอบกลับเป็นอาเรย์ของธุรกรรม. แอดเดรส-ธุรกรรม สำหรับธุรกรรม mempool ใหม่, และ ธุรกรรม-บล็อก สำหรับธุรกรรมที่ถูกยืนยันในบล็อกใหม่
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- โค้ดตัวอย่าง
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- แพ็คเกจที่ติดตั้ง
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- การตอบกลับ
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- เอกสารคำอภิบาย
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- นโยบายความเป็นส่วนตัว
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes ต่อวินาที:
+
+ Incoming transactions
+ ธุรกรรมที่เข้ามา
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
กำลังโหลดข้อมูล
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
ยังไม่ได้รับการยืนยัน
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
ขนาด mempool
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- บล็อก
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- บล็อก
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- ถูกขุดเมื่อ
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- บล็อก
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
กราฟ
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
มุมมองทีวี
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ เอกสารคำอภิบาย
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
ช่วงของค่าธรรมเนียม
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- ค่าธรรมเนียมทั้งหมด
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- บล็อกถัดไป
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
ชั้นของ บล็อก mempool
@@ -3236,7 +2912,7 @@
ระยะ
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
ผลรวม
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- ไม่ทราบ
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- ระบุโดยแอดเดรสที่มีการจ่ายเงิน: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- ระบุโดยแท็ก coinbase: ' '
+
+ Latest blocks
+ บล็อกล่าสุด
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Hex ของธุรกรรม
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, ความสูงบล็อก, แฮชหรือแอดเดรส
@@ -3326,7 +3344,7 @@
ผู้สนับสนุน
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
ร้องขอใบกำกับ
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
กำลังรอการทำธุรกรรม...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
เราได้รับการบริจาคของคุณแล้ว!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
ขอบคุณ!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
ขนาดหน่วยความจำ vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
ตัวกรอง
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
กลับ
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
ธุรกรรมต่อวินาที (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- ได้รับการยืนยัน
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
พบเห็นครั้งแรก
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- ขนาด
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- น้ำหนัก
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
เวลาล็อก
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(เหรียญที่ถูกสร้างใหม่)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
Peg-in
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
พยาน
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
สคริปต์ถอน P2SH
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
สคริปต์พยาน P2SH
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nลำดับ
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
สคริปต์เอาต์พุตก่อนหน้า
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
ประเภทของ output ก่อนหน้า
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- โหลดทั้งหมด
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out ไปยัง
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- ข้อมูล
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
ธุรกรรมนี้ประหยัดค่าธรรมเนียม % โดยใช้ native SegWit-Bech32
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- บล็อกล่าสุด
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- TXs
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
ธุรกรรมล่าสุด
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
ค่าธรรมเนียม
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
ขยาย
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
ย่อ
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
ค่าธรรมเนียมขั้นต่ำ
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
กำลังล้าง
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
หน่วยความจำที่ใช้ไป
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
อุปทานหมุนเวียน L-BTC
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- ธุรกรรมที่เข้ามา
+
+ API service
+ บริการ API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- การเปลี่ยนแปลงระดับความยาก
+
+ Endpoint
+ ปลายทาง
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- คงเหลือ
+
+ Description
+ คำอธิบาย
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- ประมาณ
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ ค่าตอบกลับพื้นฐาน: การกระทำ: 'ต้องการ', ข้อมูล: ['บล็อก', ...] เพื่ออธิบายค่าที่ต้องการตอบกลับ. ที่ใช้งานได้: บล็อก , บล็อก-mempool , ชาตสด-2h , และ สถิติ . ส่งธุรกรรมไปยังแอดเดรส: 'track-address': '3PbJ...bF9B' เพื่อที่จะได้รับธุรกรรมใหม่ทั้งหมดที่มี input/output ของแอดเดรสนั้น. ตอบกลับเป็นอาเรย์ของธุรกรรม. แอดเดรส-ธุรกรรม สำหรับธุรกรรม mempool ใหม่, และ ธุรกรรม-บล็อก สำหรับธุรกรรมที่ถูกยืนยันในบล็อกใหม่
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- ก่อนหน้า
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- ช่วงเวลาปัจจุบัน
+
+ Code Example
+ โค้ดตัวอย่าง
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ แพ็คเกจที่ติดตั้ง
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ การตอบกลับ
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf
index 002e204f8..87881c6a6 100644
--- a/frontend/src/locale/messages.tr.xlf
+++ b/frontend/src/locale/messages.tr.xlf
@@ -5,16 +5,15 @@
Close
Kapat
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Kayma /
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Önceki
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Sonraki
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Ay seç
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Yıl Seç
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Önceki ay
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Sonraki ay
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Saat
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Dakika
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Saatlik artış
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Saatlik azalış
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Dakikalık artış
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Dakikalık azalış
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Saniye
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Saniyelik artış
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Saniyelik azalış
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Kapat
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Kayıtlı varlıklar
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Varlık ara
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Temizle
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- İsim
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Ticker
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Ihraç edenin domaini
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- Aset ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Varlık datasını yüklerken hata oldu
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Varlıklar
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Zaman damgası
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Hepsini gör »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Hizmet Koşulları
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Gizlilik politikası
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Alım Teklifleri
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Onaylı
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Varlık listeleme fiyatı
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Reklamsız, altcoinsiz ve 3. parti takipçilerin olmadığı, sadece Bitcoin komünitesine hizmet etmek amaçlı mempool ve blokzincir takibini sağlayan projeyi geliştiriyoruz.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Kurumsal sponsorlar
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Kömünite sponsorlarımız
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Sponsor olun ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
https://mempool.space/sponsor 'a ilerle
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Kömünite Entegrasyonları
+
+ Enterprise Sponsors 🚀
+ Kurumsal sponsorlar
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Kömünite sponsorlarımız
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
İşbirlikçi kömüniteler
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Proje Destekçileri
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Proje Üyeleri
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Projeyi ayakta tutanlar
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
Hakkında
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- Çoklu imza /
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Bu adres üzerindeki işlem sayısı Electrum sunucu limitini aşmaktadır Bu adresi resmi Mempool websitesi üzerinde görüntüleyin:
+
+ 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
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
- Isim
+ İsim
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Pegged in
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Pegged out
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Yanan miktar
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Dolaşan miktar
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Data seti yüklerken hata oldu.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Varlık:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Varlıklar
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Varlık ara
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Temizle
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Ticker
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Ihraç edenin domaini
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ Aset ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Varlık datasını yüklerken hata oldu
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Çevrimdışı
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Panel
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Stat
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Dökümanlar
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Boyut
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Ağırlık
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Sonraki Blok
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Zaman damgası
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Boyut
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Ağırlık
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Medyan ücret
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Toplam ücret
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Ödül + ücretler:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Madenci
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bit
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merkle kökü
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Zorluk
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Block Başlığı Hex'i
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Detaylar
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Blok datası yüklenirken hata oldu.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Blok: /
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Çıkarıldı
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ İşlemler
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Kopyalandı!
@@ -2164,851 +2503,126 @@
15
-
- API service
- APU servisi
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Çıkış Noktası
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Tanım
+
+ Difficulty Adjustment
+ Zorluk Seviyesi
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Kalan
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Zorluk seviyesi hakkındaki detayları gösterir.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Para birimi olarak kullanmak için kullanılabilir para birimlerini listeler
+
+ Estimate
+ Tahmini
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Tek bir pazar için açık teklifleri gösterir
+
+ Previous
+ Önceki
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Tek bir pazar için yüksek/düşül/açık/kapalı datası verir. Bu data ile mum grafikleri oluşturulabilir.
+
+ Current Period
+ Şimdiki periyod
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Kullanılabilir pazarları listeler.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Tek bir market için açık teklifleri listeler.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Tek bir market ya da bütün marketler için 24 saatlik fiyat bilgisi gösterir.
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Tek bir market üzerindeki tamamlanmış işlemleri listeler.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Tek bir pazar veya çoklu pazarlar için tercih edilen para birimi cinsinden hacim datasını gösterir.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Bütün Bisq işlemleri hakkında istatistik paylaş
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Bir adrese ait bütün detayları gösterir. Kullanılabilir alanlar: address , chain_stats , and mempool_stats . chain,mempool herhangibir obje içeren datalar tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , ve spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- En yeniden başlayarak, belli bir adres/scripthash için işlem geçmişini al. En son 50 mempool işlemini ve de ek olarak ilk 25 onaylanmış adresi gösterir. Daha fazla onaylanmış işlem görmek için :last_seen_txid (aşağıya bakınız)
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Belirtilen adres/scripthash için işlem geçmişi al, en yeni en sonda olacak şekilde sırala. Sayfa başına 25 işlem gösterir. Daha fazlası önceki istek formunda son txid belirtilerek istenebilir.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Belirtilen adres/scripthash için için onaylanmamış işlem geçmişini iste. Sayfa başına 50 işlem gösterir. (tek sayfadır)
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Bir adres/scripthash ile ilişkili harcanmamış çıkış işlemlerini al. Kullanılabilir alanlar: txid , vout , value , ve stauts (fonlayan işlemin tx durumu ile). Ayrıca valuecommitment alanı value yerine kullanılabilir ve ek olarak: asset / asstcommitment , nonce / noncecommitment , surjection_proof , ve range_proof eklenebilir.
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Liquid varlık hakkında bilgi döndürür
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Belirtilen Liquid varlık için işlemleri gösterir. Network'e ait yerli varlıklar için, peg in, peg out listeleri, yakılma işlemlerini de gösterir. Kullanıcı tarafından yaratılan varlıklar için, yaratma listesi, tekrar yaratma ve yakma işlemlerini gösterir. Bu varlığın transferini sağlayan sıradan işlemleri dahil etmez.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Belirtilen varlığın toplam arzını al. Seçilen native varlık (L-BTC) için hesaplama devamındaki gibi yapılır:
-[chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Gizli olarak yaratılan varlıklar için geçerli değildir. Eğer /bölünen belirtilmişse arzı varlığın bölünebilirliğine göre ondalık olarak verir.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Bir blok hakkında detayları paylaşır. Kullanılabilir alanlar: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , ve previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Hex ile kodlanmış blok başlığını gösterir.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Bloğun anlık olarak bulunduğu hash'i gösterir :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Ham blok sayısını binary olarak göster.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Bloğun onay durumunu gösterir. Kullanılabilen alanlar: in_best_chain (boolean, yanlış ve öksüz bloklar), next_best (sonraki blok hashi sadece en iyi zincirde bulunan bloklar için verilir)
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Son bulunan bloğun yüksekliği
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Son bulunan bloğun hash'i.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Belirlenen blok içerisindeki işlem indeksini :index verir.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Bloğun içindeki txID listesini göster
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Bir bloktaki işlemleri listeler ( start_index 'ten başlayarak 25 işleme kadar). Burada listelenen işlemler status alanını göstermez çünkü aynı blokta bulunan bütün işlemler aynı onay durumuna sahiptir.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Belirtilmesi halinde :start_height verisini kullanarak, aksi takdirde en son uçtan 10 tane en yeni bloğu paylaşır.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Halihazırdaki mempool'un dolduracağı tahmini blok sayısını gösterir.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Yeni işlemler için tavsiye ettiğimiz transfer ücretlerini gösterir
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Mempool sırada bekleyen işlem istatistiği
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Mempool'daki tam txid listesini dizi olarak al. Txid sıralaması rastgeledir ve bitcoind ile eşleşmez.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Mempool'a gönderilmiş son 10 işlemin listesini al. Her işlem objesi basitleştirilmiş olarak takip eden alanları gösterir: txid , fee , vsize , ve value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Bir işlemin ata ve en iyi varis ücretlerini gösterir.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Bir işlem hakkındaki detayları gösterir. Kullanılabilir alanlar: txid , version , locktime , size , weight , fee , vin , vout , ve status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Bir işlemi seri hex halinde al.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- İşlemin merkle dahiliyet kanıdını bicoind's merkleblock formatını kullanarak gösterir.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- İşlemin merkle dahiliyet kanıdını Electrum's blockchain.transaction.get_merkle format. formatını kullanarak gösterir.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- İşlemin harcama statüsü çıktısını gösterir. Kullanılabilir alanlar: spent (boolean), txid (tercihen), vin (tercihen), ve status (tercihen; işlem harcama çıktısı)
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Bütün işlem çıkışlarının harcanma durumunu gösterir.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Bir işlemi binary data olarak gösterir.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Bir işlemin onay durumunu gösterir. Kullanılabilen alanlar: onaylı (boole değeri), block_height (tercihen), ve block_hash (tercihen).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Index'ten başlayara son Bisq işlemlerinin miktarını verir.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Ağa ham bir işlem yayınla. İstek kısmına işlem, hex olarak girilmeli. Başarılı olması durumunda txid gösterilecek.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Varsayılan ileti: action: 'want', data: ['blocks', ...] iletmek istediğini belirt. Kullanılabilir alanlar: blocks , mempool-blocks , live-2h-chart ve stats . Takip eden adresle ilişkili işlemleri ileterek: 'track-address': '3PbJ...bF9B' bu adresi içeren bütün giriş ve çıkış işlemlerini al. İşlemleri sırala. Yeni mempool işlemleri için address-transactions ve yeni onaylı blok işlemleri için block-transcations kullan.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Örnek kod
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Yükleme paketi
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Cevap
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Dökümentasyon
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Gizlilik politikası
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3049,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Saniye başına düşen Tx vbyte:
+
+ Incoming transactions
+ Gelen işlemler
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Arka uç senkronize oluyor
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3076,11 +2694,11 @@
vb/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3090,11 +2708,11 @@
Onaylanmadı
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3104,60 +2722,109 @@
Mempool boyutu
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- bloks
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- blok
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Çıkarıldı
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Bloklar
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3165,31 +2832,56 @@
Grafikler
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV görünümü
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Dökümentasyon
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Ücret aralığı
@@ -3199,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Toplam ücretler
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Sonraki blok
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
mempool bloğu listesi
@@ -3237,7 +2912,7 @@
Aralık
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3245,33 +2920,307 @@
Toplam
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Bilinmeyen
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Çıktı adresine göre belirle: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Coinbase tagine göre belirle: ' '
+
+ Latest blocks
+ Son bloklar
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3286,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- İşlem Hex'i
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3304,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, block yüksekliği, hash veya adres
@@ -3327,7 +3344,7 @@
Sponsor
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3340,7 +3357,7 @@
Fatura isteyin
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3349,7 +3366,7 @@
İşlem bekleniyor...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3358,7 +3375,7 @@
Bağış onaylandı!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3367,7 +3384,7 @@
Teşekkürler!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3376,7 +3393,7 @@
Mempool vByte (sat/vByte) görünümü
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3385,7 +3402,7 @@
Filtre
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3394,7 +3411,7 @@
Ters çevir
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3403,7 +3420,7 @@
Saniye başı vBytes (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3622,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Onaylı
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
İlk görüldüğü an
@@ -3715,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Boyut
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Ağırlık
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Kilitsüresi
@@ -3772,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3797,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3806,7 +3797,7 @@
(Yeni çıkarılmış coinler)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3815,7 +3806,7 @@
İçeri geçir
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3824,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3834,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3844,7 +3835,7 @@
Tanık
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3853,16 +3844,24 @@
P2SH alım scripti
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH tanık scripti
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3871,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3880,7 +3879,7 @@
Önceki çıkış scripti
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3889,29 +3888,16 @@
Önceki çıkış tipi
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Hepsini yükle
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
'ye çıkar
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3920,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3930,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- Data
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Bu işlem native SegWit-Bech32 kullanrak % tasarruf sağladı
@@ -4095,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Son bloklar
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- İşlemler
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Son işlemler
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4135,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4144,7 +4089,7 @@
Ücret
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4153,7 +4098,7 @@
Genişlet
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4162,7 +4107,7 @@
Daralt
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4171,7 +4116,7 @@
Minimum ücret
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4181,7 +4126,7 @@
Temizleme
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4191,7 +4136,7 @@
Hafıza kullanımı
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4201,75 +4146,95 @@
Dolaşımdaki L-BTC miktarı
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Gelen işlemler
+
+ API service
+ APU servisi
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Zorluk Seviyesi
+
+ Endpoint
+ Çıkış Noktası
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Kalan
+
+ Description
+ Tanım
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Tahmini
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Varsayılan ileti: action: 'want', data: ['blocks', ...] iletmek istediğini belirt. Kullanılabilir alanlar: blocks , mempool-blocks , live-2h-chart ve stats . Takip eden adresle ilişkili işlemleri ileterek: 'track-address': '3PbJ...bF9B' bu adresi içeren bütün giriş ve çıkış işlemlerini al. İşlemleri sırala. Yeni mempool işlemleri için address-transactions ve yeni onaylı blok işlemleri için block-transcations kullan.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Önceki
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Şimdiki periyod
+
+ Code Example
+ Örnek kod
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Yükleme paketi
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Cevap
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf
index a9bb44135..9c972ab1f 100644
--- a/frontend/src/locale/messages.uk.xlf
+++ b/frontend/src/locale/messages.uk.xlf
@@ -5,16 +5,15 @@
Close
Закрити
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Слайд з
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Попередній
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Наступний
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Оберіть місяць
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Оберіть рік
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Попередній місяць
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Наступний місяць
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
ГГ
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Години
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
ХХ
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Хвилини
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Збільшити години
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Зменшити години
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Збільшити хвилини
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Зменшити хвилини
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
СС
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Секунди
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Збільшити секунди
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Зменшити секунди
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Закрити
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Зареєстровані активи
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Шукати актив
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Очистити
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Назва
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Тікер
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Домен емітента
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID активу
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Не вдалося завантажити дані про активи.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Активи
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Час
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Дивитись всі »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Умови використання
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Політика конфіденційності
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Пропозиції покупи
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Підтверджена
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Ціна лістингу активу
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Ми будуємо експлорер мемпулу та блоків для ком'юніті Bitcoin з фокусом на ринок транзакцій та багаторівневу екосистему, без реклами, альткоїнів та сторонніх трекерів.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Підприємства-спонсори 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Спонсори з спільноти ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Стати спонсором ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Перейдіть до https://mempool.space/sponsor щоб спонсорувати
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Інтеграції спільноти
+
+ Enterprise Sponsors 🚀
+ Підприємства-спонсори 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Спонсори з спільноти ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Союзи спільноти
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Учасники проекту
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Члени проекту
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Розробники проекту
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
Про
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- мультипідпис з
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Кількість транзакцій на цій адресі перевищує ліміт сервера Electrum Спробуйте переглянути цю адресу на офіційному вебсайті 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Назва
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Закріплено
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Розкріплено
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Спалена сума
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Сума в обігу
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Не вдалося завантажити дані про актив.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Актив:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Активи
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Шукати актив
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Очистити
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Тікер
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Домен емітента
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID активу
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Не вдалося завантажити дані про активи.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Офлайн
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
Панель
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Статистика
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Документація
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Розмір
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Вага
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Наступний блок
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Час
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Розмір
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Вага
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Середня комісія
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Всього комісій
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Нагорода + комісії:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Майнер
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Біти
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Корінь Меркле
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Складність
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Заголовок блоку в hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Деталі
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Не вдалося завантажити дані про блок.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Блок :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ Добутий
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ Транзакцій
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Скопійовано!
@@ -2164,850 +2503,126 @@
15
-
- API service
- Сервіс API
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Ендпоїнт
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Опис
+
+ Difficulty Adjustment
+ Регулювання складності
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Лишається
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Повертає деталі про регулювання складності.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Повертає список всіх доступних валют для заданої базової валюти.
+
+ Estimate
+ Приблизно
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Повертає список цін відкритих пропозицій для одного ринку.
+
+ Previous
+ Попередня
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Повертає дані про ціну, відкриття за закриття для заданого ринку. Може використовуватись для створення свічкового графіку.
+
+ Current Period
+ Поточний період
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Повертає список всіх доступних ринків.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Повертає список відкритих пропозицій для конкретного ринку.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Повертає 24-годинний тікер для конкретного ринку або всіх ринків.
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Повертає список закінчених торгів для конкретного ринку.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Повертає періодичну інформацію про об'єми деноміновані в базовій валюті для одного, або всіх ринків.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Повертає статистику про всі транзакції Bisq.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- Повертає деталі про адресу. Доступні поля: address , chain_stats , and mempool_stats . chain,mempool _stats кожен мають об'єкт з tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , та spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- Повертає історію транзакцій для заданої адреси/scripthash, сортована від новіших до старіших. Повертає до 50 транзакцій з мемпулу плюс 25 підтверджених транзакцій. Ви можете запросити більше підтверджених транзакцій використовуючи :last_seen_txid (див нижче).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Повертає підтверджену історію транзакцій для заданої адреси/scripthash відсортовану від новіших до старіших. Повертає 25 транзакцій на сторінку. Більше транзакцій може бути отримано вказавши останній ідентифікатор транзакції з попереднього запиту.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Повертає непідтверджену історію транзакцій для заданої адреси/scripthash. Повертає до 50 транзакцій (без сторінок).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- Повертає список невитрачених виходів транзакцій пов'язаних з адресою/scripthash. Доступні поля: txid , vout , value та status (з статусом транзакції). Також є можливе поле valuecommitment яке може з'явитись замість value плюс наступні додаткові поля: asset / assetcommitment , nonce / noncecommitment , surjection_proof та range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Повертає інформацію про актив на Liquid.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Повертає транзакції пов'язані з вказаним активом Liquid. Для нативного активу мережі повертає список транзакцій закріплення, розкріплення та спалення. Не включає звичайні транзакції з цим активом.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Повертає поточну сукупну пропозицію вказаного активу. Для нативного активу (L-BTC) вона розраховується наступним чином [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Для емітованих активів вона розраховується наступним чином [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Не доступний для активів з сліпою емісією. Якщо вказати /decimal, пропозиція повертається у вигляді десяткового числа відповідно до ділимості активу. Інакше число буде повернуте в базових одиницях.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- Повертає деталі про блок. Доступні поля: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , та previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Повертає заголовок блоку закодований в hex.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Повертає хеш блоку, який зараз знаходиться на висоті :height .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Повертає сирий блок в двійковому форматі.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- Повертає статус блоку. Доступні поля: in_best_chain (boolean, false для осиротілих блоків), next_best (хеш наступного блоку, доступний тільки для блоків в найкращому ланцюжці).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Повертає висоту останнього блоку.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Повертає хеш останнього блоку.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- Повертає транзакцію за індексом :index у вказаному блоці.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Повертає список всіх ідентифікаторів транзакцій в блоці.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- Повертає список транзакцій в блоці (до 25 транзакцій починаючи з start_index ). Повернені транзакції не мають поля status оскільки всі транзакції мають однаковий блок та статус підтвердження.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- Повертає 10 найновіших блоків починаючи з верхівки або з :start_height якщо вона вказана.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Повертає поточний мемпул у вигляді прогнозу блоків.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Повертає комісію, яку ми радимо для нових транзакцій.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Повертає поточну статистику про заповненість мемпулу.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Отримати повний список ідентифікаторів транзакцій з мемпулу у вигляді масиву. Послідовність ідентифікаторів довільна і не співпадає з bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- Повертає список з 10 останніх транзакцій, які попали в мемпул. Кожна транзакція містить спрощені загальні дані з наступними полями: txid , fee , vsize та value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Повертає предків і найкращі комісії для нащадків транзакції.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- Повертає деталі про транзакцію. Доступні поля: txid , version , locktime , size , weight , fee , vin , vout та status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Повертає транзакцію у серіалізовану в шістнадцяткове число.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- Повертає доказ Меркла транзакції використовуючи формат bitcoind merkleblock .
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- Повертає доказ Меркла транзакції використовуючи формат Electrum blockchain.transaction.get_merkle.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- Повертає статус витрати виходу транзакції. Доступні поля: spent (boolean), txid (опціональне), vin (опціональне) та status (опціональне, статус витрати транзакції).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Повертає статус витрати всіх виходів транзакції.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Повертає транзакцію у вигляді двійкових даних.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- Повертає статус підтвердження транзакції. Доступні поля: confirmed (boolean), block_height (опціональне) та block_hash (опціональне).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Повертає :length останніх транзакцій Bisq починаючи з :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- Надіслати сиру транзакцію до мережі. Транзакція має бути вказана у шістнадцятковому вигляді в тілі запиту. У випадку успіху буде повернутий txid .
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- Надсилання за замовчуванням за замовчуванням: action: 'want', data: ['blocks', ...] щоб вказати, що має бути надіслано. Доступно: blocks , mempool-blocks , live-2h-chart та stats . Надіслати транзакції пов'язані з адресою: 'track-address': '3PbJ...bF9B' щоб отримати всі нові транзакції які містять дану адресу у входах чи виходах. Повертає масив транзакцій. address-transactions для нових мемпул транзакцій та block-transactions для нових підтверджених транзакцій.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Приклад коду
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Встановити пакунок
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Відповідь
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Документація
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Політика конфіденційності
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- vBytes за секунду транзакції:
+
+ Incoming transactions
+ Вхідні транзакції
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Бекенд синхронізується
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2708,11 @@
Непідтверджені
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2722,109 @@
Розмір мемпулу
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- блоків
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- блок
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- Добутий
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Блоки
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2832,56 @@
Графіки
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV перегляд
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Документація
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Діапазон комісії
@@ -3198,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Всього комісій
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Наступний блок
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Список з мемпул блоків
@@ -3236,7 +2912,7 @@
Діапазон
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2920,307 @@
Сума
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Невідомо
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Ідентифікований за адресою виплат: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Ідентифікований за coinbase тегом: ' '
+
+ Latest blocks
+ Останні блоки
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Транзакція в hex
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, висота блоку, хеш або адреса
@@ -3326,7 +3344,7 @@
Спонсор
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3357,7 @@
Отримати рахунок
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3366,7 @@
Очікуємо на транзакцію...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3375,7 @@
Пожертвування підтверджене!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3384,7 @@
Дякую вам!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3393,7 @@
Мемпул в vBytes (sat/vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3402,7 @@
Фільтрувати
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3411,7 @@
Інвертувати
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3420,7 @@
vBytes за секунду транзакції (vB/s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Підтверджена
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Вперше помічена
@@ -3714,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Розмір
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Вага
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Час блокування
@@ -3771,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3797,7 @@
(Нові монети)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3806,7 @@
Закріплення
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3835,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3844,24 @@
P2SH redeem скрипт
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH witness скрипт
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3879,7 @@
Скрипт попереднього виходу
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3888,16 @@
Тип попереднього виходу
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Завантажити всі
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Розкріплення до
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- дані
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
Ця транзакція зекономила % на комісії використовуючи нативний SegWit-Bech32
@@ -4094,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Останні блоки
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- Транзакцій
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Останні транзакції
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4089,7 @@
Комісія
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4098,7 @@
Розгорнути
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4107,7 @@
Згорнути
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4116,7 @@
Мінімальна комісія
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4126,7 @@
Очищення
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4136,7 @@
Використання пам'яті
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4146,95 @@
L-BTC в обігу
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Вхідні транзакції
+
+ API service
+ Сервіс API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Регулювання складності
+
+ Endpoint
+ Ендпоїнт
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Лишається
+
+ Description
+ Опис
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Приблизно
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ Надсилання за замовчуванням за замовчуванням: action: 'want', data: ['blocks', ...] щоб вказати, що має бути надіслано. Доступно: blocks , mempool-blocks , live-2h-chart та stats . Надіслати транзакції пов'язані з адресою: 'track-address': '3PbJ...bF9B' щоб отримати всі нові транзакції які містять дану адресу у входах чи виходах. Повертає масив транзакцій. address-transactions для нових мемпул транзакцій та block-transactions для нових підтверджених транзакцій.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Попередня
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Поточний період
+
+ Code Example
+ Приклад коду
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Встановити пакунок
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Відповідь
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf
index 4017b4419..62b8ed0b9 100644
--- a/frontend/src/locale/messages.vi.xlf
+++ b/frontend/src/locale/messages.vi.xlf
@@ -5,16 +5,15 @@
Close
Đóng
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- Trang trong tổng số
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +21,39 @@
Previous
Trước
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
Kế tiếp
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
Chọn tháng
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
Chọn năm
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +61,213 @@
Previous month
Tháng trước
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
Tháng sau
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
Giờ
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
Phút
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
Giờ tăng dần
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
Giờ giảm dần
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
Phút tăng dần
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
Phút giảm dần
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
Giây
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
Giây tăng dần
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
Giây giảm dần
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
Đóng
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- Tài sản đã đăng ký
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- Tìm kiếm tài sản
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- Xoá
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- Tên
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- Mã
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- Tên miền nhà phát hành
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- ID tài sản
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- Lỗi khi tải dữ liệu tài sản.
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- Tài sản
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +339,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +364,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +414,7 @@
block.hash
-
+
Timestamp
Dấu thời gian
@@ -535,14 +427,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +497,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +530,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +545,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +566,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +729,8 @@
bisq-dashboard.market-price-title
-
- View all »
- Xem tất cả »
+
+ View more »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +740,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
Điều khoản Dịch vụ
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ Chính sách Quyền riêng tư
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
Chào mua
@@ -943,6 +903,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +973,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1007,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1029,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1041,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1083,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1105,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1204,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1228,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ Đã xác nhận
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
Phí niêm yết tài sản
@@ -1412,38 +1402,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- Xây dựng một mempool và trình xem blockchain cho cộng đồng Bitcoin, tập trung vào thị trường phí giao dịch và hệ sinh thái đa lớp, không có bất kỳ quảng cáo, altcoin hoặc phần mềm theo dõi bên thứ ba nào.
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- Nhà tài trợ doanh nghiệp 🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- Nhà tài trợ cộng đồng ❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
Trở thành nhà tài trợ ❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1423,71 @@
Điều hướng đến https://mempool.space/sponsor để ủng hộ
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- Tích hợp cộng đồng
+
+ Enterprise Sponsors 🚀
+ Nhà tài trợ doanh nghiệp 🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ Nhà tài trợ cộng đồng ❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
Liên minh cộng đồng
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
Người đóng góp dự án
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1496,7 @@
Thành viên Dự án
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1505,7 @@
Người bảo trì dự án
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1514,27 @@
Về chúng tôi
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- Đa chữ ký trong
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- Lightning
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1572,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- Số lượng giao dịch trên địa chỉ này vượt quá giới hạn máy chủ Electrum Cân nhắc xem địa chỉ này trên trang web Mempool chính thức:
+
+ 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
@@ -1608,17 +1591,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1627,22 @@
Liquid Asset page title
asset
-
+
Name
Tên
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1679,7 @@
Đã chốt vào
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1689,7 @@
Đã chốt ra
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1699,7 @@
Lượng đã đốt
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1709,11 @@
Số lượng luân chuyển
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1750,7 @@
Lỗi khi tải dữ liệu tài sản.
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1759,141 @@
Tài sản:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ Tài sản
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ Tìm kiếm tài sản
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ Xoá
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ Mã
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ Tên miền nhà phát hành
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ ID tài sản
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ Lỗi khi tải dữ liệu tài sản.
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
Ngoại tuyến
@@ -1777,7 +1903,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1920,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1937,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1950,15 @@
bảng điều khiển
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1967,7 @@
Số liệu
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1976,184 @@
Tài liệu
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ Kích thước
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ Khối lượng
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
Khối tiếp theo
@@ -1873,6 +2165,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2180,6 @@
Previous Block
-
- Timestamp
- Dấu thời gian
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- Kích thước
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- Khối lượng
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
Phí trung bình
@@ -1957,7 +2206,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2234,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2254,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2297,15 @@
Tổng các khoản phí
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2315,11 @@
Trợ cấp + phí:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2329,7 @@
Thợ đào
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2338,7 @@
Bits
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2347,7 @@
Merkle root
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2356,27 @@
Độ khó
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2385,7 @@
Nonce
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2394,7 @@
Khối tiêu đề Hex
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2403,7 @@
Chi tiết
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2417,7 @@
Lỗi khi tải dữ liệu khối.
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2426,75 @@
Khối :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ đã đào
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ Các giao dịch
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
Đã sao chép!
@@ -2164,834 +2503,126 @@
15
-
- API service
- Dịch vụ API
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Điểm cuối
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- Sự miêu tả
+
+ Difficulty Adjustment
+ Điều chỉnh Độ khó
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ Còn lại
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- Trả về thông tin chi tiết về điều chỉnh độ khó.
+
+ block
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- Cung cấp danh sách các loại tiền tệ hỗ trợ với một loại tiền tệ cơ sở nhất định.
+
+ Estimate
+ Ước tính
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- Cung cấp danh sách giá chào bán đang mở cho một thị trường.
+
+ Previous
+ Trước
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- Cung cấp dữ liệu cao / thấp / mở / đóng cửa cho một thị trường nhất định. Có thể dùng tạo biểu đồ nến.
+
+ Current Period
+ Giai đoạn hiện tại
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- Cung cấp danh sách các thị trường hỗ trợ.
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- Cung cấp danh sách chi tiết giá chào bán đang mở cho một thị trường.
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- Cung cấp bảng giá 24 giờ cho một thị trường hoặc tất cả các thị trường
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- Cung cấp danh sách các giao dịch đã hoàn thành cho một thị trường.
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- Cung cấp dữ liệu khối lượng định kỳ theo đơn vị tiền tệ cơ sở cho một hoặc tất cả các thị trường.
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- Trả về thống kê về tất cả các giao dịch Bisq.
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- Nhận lịch sử giao dịch đã xác nhận cho địa chỉ/scripthash được chỉ định, được sắp xếp theo mới nhất trước. Trả về 25 giao dịch mỗi trang. Có thể yêu cầu nhiều hơn bằng cách chỉ định txid cuối cùng mà truy vấn trước đó nhận.
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- Nhận lịch sử giao dịch chưa được xác nhận cho địa chỉ/scripthash được chỉ định. Trả về tối đa 50 giao dịch (không phân trang).
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- Trả về thông tin tài sản Liquid.
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- Trả về các giao dịch được liên kết với tài sản Liquid được chỉ định. Đối với tài sản gốc của mạng, trả về danh sách các giao dịch peg in, peg out và đốt. Đối với các tài sản do người dùng phát hành, trả về danh sách các giao dịch phát hành, cấp lại và đốt. Không bao gồm các giao dịch thông thường di chuyển tài sản này.
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- Nhận tổng cung hiện tại của tài sản được chỉ định. Đối với tài sản gốc (L-BTC), giá trị này được tính là [chain, mempool] _stats.peg_in_amount - [chain, mempool] _stats.peg_out_amount - [chain, mempool] _stats.burned_amount. Đối với tài sản đã phát hành, giá trị này được tính là [chain, mempool] _stats.issued_amount - [chain, mempool] _stats.burned_amount. Không có sẵn cho các tài sản có đợt phát hành mù mờ. Nếu /decimal được chỉ định, trả về nguồn cung cấp dưới dạng số thập phân theo khả năng chia hết của tài sản. Nếu không, được trả về với đơn vị cơ sở.
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- Trả về tiêu đề khối được mã hóa hex.
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- Trả về băm của khối hiện tại ở vị trí : chiều cao khối .
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- Trả về biểu diễn khối thô trong hệ nhị phân.
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- Trả về chiều cao của khối cuối cùng.
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- Trả về hàm băm của khối cuối cùng.
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- Trả về danh sách tất cả các txid trong khối.
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- Trả về mempool hiện tại dưới dạng các khối dự kiến.
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- Trả lại phí đề xuất hiện tại của chúng tôi cho các giao dịch mới.
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- Trả về thống kê tồn đọng mempool hiện tại.
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- Nhận danh sách đầy đủ các txids trong mempool dưới dạng một mảng. Thứ tự của các txids là tùy ý và không khớp với bitcoind.
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- Trả lại nguồn gốc và các khoản phí tiếp dưới tốt nhất cho một giao dịch.
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- Trả về một giao dịch được tuần tự hóa dưới dạng hex.
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- Trả về trạng thái chi tiêu của tất cả các kết quả giao dịch.
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- Trả về một giao dịch dưới dạng dữ liệu nhị phân.
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- Trả về :length của các giao dịch Bisq mới nhất, bắt đầu từ :index.
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- API
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- Ví dụ về mã
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- Cài đặt gói
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- Phản ứng
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- Tài liệu
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- Chính sách Quyền riêng tư
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3032,25 +2663,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- Tx vBytes mỗi giây:
+
+ Incoming transactions
+ Giao dịch đến
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
Backend đang đồng bộ
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3059,11 +2694,11 @@
vB/s
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3073,11 +2708,11 @@
Chưa xác nhận
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3087,60 +2722,109 @@
Kích thước mempool
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- số khối
+
+ Mining
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- số khối
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- đã đào
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- Khối
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3148,31 +2832,56 @@
Đồ thị
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
Giao diện TV
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ Tài liệu
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
Khoảng phí
@@ -3182,23 +2891,6 @@
mempool-block.fee-span
-
- Total fees
- Tổng các khoản phí
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- Khối tiếp theo
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
Bộ khối mempool
@@ -3220,7 +2912,7 @@
Phạm vi
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3228,33 +2920,307 @@
Tổng
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- Không xác định
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- Được xác định theo địa chỉ thanh toán: ' '
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Được xác định bằng thẻ coinbase: ' '
+
+ Latest blocks
+ Khối mới nhất
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3269,14 +3235,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- Giao dịch Hex
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3287,6 +3252,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
TXID, chiều cao khối, băm hoặc địa chỉ
@@ -3310,7 +3344,7 @@
Nhà tài trợ
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3323,7 +3357,7 @@
Yêu cầu hoá đơn
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3332,7 +3366,7 @@
Đang chờ giao dịch ...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3341,7 +3375,7 @@
Đã xác nhận tài trợ!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3350,7 +3384,7 @@
Cảm ơn bạn!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3359,7 +3393,7 @@
Mempool theo vBytes (sat / vByte)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3368,7 +3402,7 @@
Lọc
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3377,7 +3411,7 @@
Đảo ngược
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3386,7 +3420,7 @@
Giao dịch vBytes mỗi giây (vB / s)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3605,21 +3639,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- Đã xác nhận
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
Lần đầu thấy
@@ -3698,26 +3722,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- Kích thước
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- Khối lượng
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
Thời gian khóa
@@ -3755,15 +3759,19 @@
Transaction fee
transaction.fee
-
+
sat
sat
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3780,7 +3788,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3789,7 +3797,7 @@
(Coin mới được tạo)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3798,7 +3806,7 @@
Cố định
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3807,7 +3815,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3817,7 +3825,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3827,7 +3835,7 @@
Chứng kiến
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3836,16 +3844,24 @@
Mã thu hồi P2SH
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
Mã chứng kiến P2WSH
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3854,7 +3870,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3863,7 +3879,7 @@
Mã đầu ra trước đó
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3872,29 +3888,16 @@
Loại đầu ra trước đó
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- Tải tất cả
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
Peg-out tới
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3903,7 +3906,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3913,30 +3916,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- dữ liệu
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- sat
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
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
@@ -4078,38 +4062,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- Khối mới nhất
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- Các giao dịch
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
Giao dịch mới nhất
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4118,7 +4080,7 @@
USD
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4127,7 +4089,7 @@
Phí
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4136,7 +4098,7 @@
Mở rộng
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4145,7 +4107,7 @@
Thu gọn
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4154,7 +4116,7 @@
Phí tối thiểu
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4164,7 +4126,7 @@
Thanh lọc
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4174,7 +4136,7 @@
Sử dụng bộ nhớ
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4184,75 +4146,94 @@
L-BTC đang lưu hành
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- Giao dịch đến
+
+ API service
+ Dịch vụ API
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- Điều chỉnh Độ khó
+
+ Endpoint
+ Điểm cuối
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- Còn lại
+
+ Description
+ Sự miêu tả
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- Ước tính
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- Trước
+
+ API
+ API
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- Giai đoạn hiện tại
+
+ Code Example
+ Ví dụ về mã
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ Cài đặt gói
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ Phản ứng
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf
index a86e1f32a..f54742ae0 100644
--- a/frontend/src/locale/messages.zh.xlf
+++ b/frontend/src/locale/messages.zh.xlf
@@ -5,16 +5,16 @@
Close
关闭
- node_modules/@ng-bootstrap/src/alert/alert.ts
- 58,61
+ node_modules/src/alert/alert.ts
+ 77,80
- Slide of
- 幻灯片 /
+ Slide of
+ Slide of
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 114,118
+ node_modules/src/carousel/carousel.ts
+ 147,156
Currently selected slide number read by screen reader
@@ -22,39 +22,39 @@
Previous
前一个
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 132,134
+ node_modules/src/carousel/carousel.ts
+ 174
Next
后一个
- node_modules/@ng-bootstrap/src/carousel/carousel.ts
- 147,152
+ node_modules/src/carousel/carousel.ts
+ 195
Select month
选择月份
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 44,49
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 49,50
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
Select year
选择年份
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
- 59,63
+ node_modules/src/datepicker/datepicker-navigation-select.ts
+ 74
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts
+ node_modules/src/datepicker/datepicker-navigation-select.ts
74
@@ -62,320 +62,216 @@
Previous month
前一个月
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 24,27
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 35,36
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
Next month
后一个月
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 47,50
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
- node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts
- 60,64
+ node_modules/src/datepicker/datepicker-navigation.ts
+ 69
-
-
+
+
- node_modules/@ng-bootstrap/src/progressbar/progressbar.ts
- 32,38
+ node_modules/src/progressbar/progressbar.ts
+ 59,63
HH
HH
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 40,41
+ node_modules/src/timepicker/timepicker.ts
+ 133,135
Hours
小时
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 46,47
+ node_modules/src/timepicker/timepicker.ts
+ 154,155
MM
MM
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 51,54
+ node_modules/src/timepicker/timepicker.ts
+ 171,172
Minutes
分钟
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 58,59
+ node_modules/src/timepicker/timepicker.ts
+ 186,187
Increment hours
增加小时
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 63,64
+ node_modules/src/timepicker/timepicker.ts
+ 200
Decrement hours
递减小时
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 69,70
+ node_modules/src/timepicker/timepicker.ts
+ 219,222
Increment minutes
增加分钟
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 76,78
+ node_modules/src/timepicker/timepicker.ts
+ 238,239
Decrement minutes
递减分钟
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 82,84
+ node_modules/src/timepicker/timepicker.ts
+ 259,261
SS
SS
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 87,88
+ node_modules/src/timepicker/timepicker.ts
+ 277
Seconds
秒
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 92,93
+ node_modules/src/timepicker/timepicker.ts
+ 295
Increment seconds
增加秒
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 100,101
+ node_modules/src/timepicker/timepicker.ts
+ 295
Decrement seconds
递减秒
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 106,110
-
-
-
-
-
-
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 115,121
+ node_modules/src/timepicker/timepicker.ts
+ 295
-
-
+
+
- node_modules/@ng-bootstrap/src/timepicker/timepicker.ts
- 123,131
+ node_modules/src/timepicker/timepicker.ts
+ 295
+
+
+
+
+
+
+ node_modules/src/timepicker/timepicker.ts
+ 295
Close
关闭
- node_modules/@ng-bootstrap/src/toast/toast.ts
- 78,85
-
-
-
- Registered assets
- 已注册资产
-
- src/app/assets/assets.component.html
- 3,8
-
- Registered assets page header
-
-
- Search asset
- 搜索资产
-
- src/app/assets/assets.component.html
- 9,11
-
- Search Assets Placeholder Text
-
-
- Clear
- 清空
-
- src/app/assets/assets.component.html
- 11,16
-
- Search Clear Button
-
-
- Name
- 名称
-
- src/app/assets/assets.component.html
- 19,21
-
-
- src/app/assets/assets.component.html
- 44,46
-
- Asset name header
-
-
- Ticker
- 代币
-
- src/app/assets/assets.component.html
- 20,21
-
-
- src/app/assets/assets.component.html
- 45,47
-
- Asset ticker header
-
-
- Issuer domain
- 发行方
-
- src/app/assets/assets.component.html
- 21,25
-
-
- src/app/assets/assets.component.html
- 46,50
-
- Asset Issuer Domain header
-
-
- Asset ID
- 资产 ID
-
- src/app/assets/assets.component.html
- 22,25
-
-
- src/app/assets/assets.component.html
- 47,50
-
- Asset ID header
-
-
- Error loading assets data.
- 加载资产数据时出错。
-
- src/app/assets/assets.component.html
- 63,71
-
- Asset data load error
-
-
- Assets
- 资产
-
- src/app/assets/assets.component.ts
- 40
-
-
- src/app/components/liquid-master-page/liquid-master-page.component.html
- 44,46
-
-
- src/app/components/master-page/master-page.component.html
- 58,61
+ node_modules/src/toast/toast.ts
+ 106,109
@@ -447,15 +343,15 @@
src/app/components/block/block.component.html
- 168,169
+ 190,191
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 19,20
+ 22,23
src/app/components/mempool-blocks/mempool-blocks.component.html
- 18,19
+ 21,22
shared.transaction-count.singular
@@ -472,15 +368,15 @@
src/app/components/block/block.component.html
- 169,170
+ 191,192
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 20,21
+ 23,24
src/app/components/mempool-blocks/mempool-blocks.component.html
- 19,20
+ 22,23
shared.transaction-count.plural
@@ -522,7 +418,7 @@
block.hash
-
+
Timestamp
时间戳
@@ -535,14 +431,33 @@
src/app/bisq/bisq-transaction/bisq-transaction.component.html
- 34,37
+ 34,36
+
+
+ src/app/components/block/block.component.html
+ 55,57
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 13,15
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 10,12
+
+
+ src/app/components/pool/pool.component.html
+ 213,215
+
+
+ src/app/components/pool/pool.component.html
+ 261,263
src/app/components/transaction/transaction.component.html
- 49,52
+ 49,51
- Transaction Timestamp
- transaction.timestamp
+ block.timestamp
Previous hash
@@ -586,13 +501,29 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
22,24
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 11,12
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 260,262
+
src/app/dashboard/dashboard.component.html
- 91,93
+ 112,113
Bisq block height header
@@ -603,10 +534,6 @@
src/app/bisq/bisq-blocks/bisq-blocks.component.html
13,15
-
- src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 21,24
-
Bisq block confirmed time header
@@ -622,16 +549,12 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 33,36
+ 34,36
src/app/components/latest-blocks/latest-blocks.component.html
12,16
-
- src/app/components/master-page/master-page.component.html
- 37,40
-
src/app/components/mempool-block/mempool-block.component.html
28,32
@@ -647,23 +570,31 @@
src/app/components/bisq-master-page/bisq-master-page.component.html
- 36,39
+ 37,39
+
+
+ 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
- 33,36
+ 35,37
src/app/components/master-page/master-page.component.html
- 40,43
+ 38,40
- src/app/components/master-page/master-page.component.html
- 48,51
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 88,90
@@ -802,9 +733,9 @@
bisq-dashboard.market-price-title
-
- View all »
- 查看全部 »
+
+ View more »
+ 更多 »
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
92,97
@@ -814,33 +745,67 @@
101,108
- src/app/dashboard/dashboard.component.html
- 110,115
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 33
- dashboard.view-all
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 43
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 54
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 65
+
+
+ src/app/dashboard/dashboard.component.html
+ 139,144
+
+ dashboard.view-more
Terms of Service
服务条款
src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
- 111,118
+ 111,113
src/app/components/about/about.component.html
- 239,243
-
-
- src/app/components/docs/docs.component.html
- 33
+ 357,361
src/app/dashboard/dashboard.component.html
- 152,154
+ 181,183
+
+
+ src/app/docs/docs/docs.component.html
+ 42
Terms of Service
shared.terms-of-service
+
+ Privacy Policy
+ 隐私协议
+
+ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html
+ 113,120
+
+
+ src/app/dashboard/dashboard.component.html
+ 183,185
+
+
+ src/app/docs/docs/docs.component.html
+ 44
+
+ Privacy Policy
+ shared.privacy-policy
+
Buy Offers
购买报价
@@ -943,6 +908,22 @@
src/app/bisq/bisq-stats/bisq-stats.component.html
66
+
+ src/app/components/pool/pool.component.html
+ 39,40
+
+
+ src/app/components/pool/pool.component.html
+ 63,65
+
+
+ src/app/components/pool/pool.component.html
+ 338,340
+
+
+ src/app/components/pool/pool.component.html
+ 349,352
+
BSQ addresses
@@ -997,11 +978,11 @@
src/app/bisq/bisq-transactions/bisq-transactions.component.html
- 20,22
+ 20,21
src/app/dashboard/dashboard.component.html
- 121,122
+ 150,151
@@ -1031,7 +1012,7 @@
src/app/components/asset/asset.component.html
- 54
+ 47
Liquid Asset issued amount
asset.issued-amount
@@ -1053,7 +1034,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 211,213
+ 239,241
@@ -1065,7 +1046,7 @@
src/app/components/block/block.component.html
- 125,126
+ 147,148
src/app/components/transaction/transaction.component.html
@@ -1107,7 +1088,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 238,239
+ 266,267
Transaction singular confirmation count
shared.confirmation-count.singular
@@ -1129,7 +1110,7 @@
src/app/components/transactions-list/transactions-list.component.html
- 239,240
+ 267,268
Transaction plural confirmation count
shared.confirmation-count.plural
@@ -1228,7 +1209,7 @@
src/app/components/transaction/transaction.component.ts
- 133,132
+ 114,113
@@ -1252,9 +1233,23 @@
src/app/dashboard/dashboard.component.html
- 120,121
+ 149,150
+
+ Confirmed
+ 已确认
+
+ src/app/bisq/bisq-transactions/bisq-transactions.component.html
+ 21,24
+
+
+ src/app/components/transaction/transaction.component.html
+ 65,66
+
+ Transaction Confirmed state
+ transaction.confirmed
+
Asset listing fee
资产上市费
@@ -1412,38 +1407,19 @@
about.about-the-project
-
- Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.
- 建立一个为比特币社区内存池与浏览器,没有任何广告、衍生币或第三方跟踪器,专注于多层生态系统与市场的交易费查询。
+
+ 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,16
+ 13,17
-
- Enterprise Sponsors 🚀
- 企业赞助商🚀
-
- src/app/components/about/about.component.html
- 35,38
-
- about.sponsors.enterprise.withRocket
-
-
- Community Sponsors ❤️
- 社区赞助商❤️
-
- src/app/components/about/about.component.html
- 65,68
-
- about.sponsors.withHeart
-
Become a sponsor ❤️
成为赞助商❤️
src/app/components/about/about.component.html
- 77,78
+ 33,34
about.become-a-sponsor
@@ -1452,38 +1428,71 @@
前往 https://mempool.space/sponsor 去赞助
src/app/components/about/about.component.html
- 78
+ 34
src/app/components/sponsor/sponsor.component.html
- 6
+ 10
about.navigate-to-sponsor
-
- Community Integrations
- 社区整合
+
+ Enterprise Sponsors 🚀
+ 企业赞助商🚀
src/app/components/about/about.component.html
- 82,85
+ 38,41
- about.integrations
+ about.sponsors.enterprise.withRocket
+
+
+ Community Sponsors ❤️
+ 社区赞助商❤️
+
+ src/app/components/about/about.component.html
+ 159,162
+
+ about.sponsors.withHeart
+
+
+ Self-Hosted Integrations
+
+ src/app/components/about/about.component.html
+ 173,175
+
+ about.self-hosted-integrations
+
+
+ Wallet Integrations
+
+ src/app/components/about/about.component.html
+ 207,209
+
+ about.wallet-integrations
Community Alliances
社区联盟
src/app/components/about/about.component.html
- 153,155
+ 257,259
about.alliances
+
+ Project Translators
+
+ src/app/components/about/about.component.html
+ 273,275
+
+ about.translators
+
Project Contributors
项目贡献者
src/app/components/about/about.component.html
- 169,171
+ 287,289
about.contributors
@@ -1492,7 +1501,7 @@
项目成员
src/app/components/about/about.component.html
- 181,183
+ 299,301
about.project_members
@@ -1501,7 +1510,7 @@
项目维护者
src/app/components/about/about.component.html
- 194,196
+ 312,314
about.maintainers
@@ -1510,47 +1519,27 @@
关于
src/app/components/about/about.component.ts
- 37
+ 39
src/app/components/bisq-master-page/bisq-master-page.component.html
- 45,48
+ 46,49
src/app/components/liquid-master-page/liquid-master-page.component.html
- 50,53
+ 52,55
src/app/components/master-page/master-page.component.html
- 64,67
+ 50,53
-
- multisig of
- 多重签名 of
+
+ Multisig of
- src/app/components/address-labels/address-labels.component.html
- 5
+ src/app/components/address-labels/address-labels.component.ts
+ 121
- address-labels.multisig
-
-
- Lightning
- 闪电交易
-
- src/app/components/address-labels/address-labels.component.html
- 11
-
- address-labels.upper-layer-peg-out
-
-
- Liquid
- Liquid交易
-
- src/app/components/address-labels/address-labels.component.html
- 17
-
- address-labels.upper-layer-peg-out
Unconfidential
@@ -1588,9 +1577,8 @@
address.error.loading-address-data
-
- The number of transactions on this address exceeds the Electrum server limit Consider viewing this address on the official Mempool website instead:
- 这个地址的交易数量超过了 Electrum 服务器的限制 可以考虑在 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:
src/app/components/address/address.component.html
137,140
@@ -1608,17 +1596,21 @@
src/app/components/amount/amount.component.html
6,9
+
+ src/app/components/asset-circulation/asset-circulation.component.html
+ 2,4
+
src/app/components/asset/asset.component.html
- 152
+ 163
src/app/components/transactions-list/transactions-list.component.html
- 247,249
+ 274,276
src/app/dashboard/dashboard.component.html
- 128,129
+ 157,158
shared.confidential
@@ -1640,15 +1632,22 @@
Liquid Asset page title
asset
-
+
Name
名称
src/app/components/asset/asset.component.html
23
- Liquid Asset name
- asset.name
+
+ src/app/components/assets/assets.component.html
+ 4,6
+
+
+ src/app/components/assets/assets.component.html
+ 29,31
+
+ Asset name header
Precision
@@ -1685,7 +1684,7 @@
锁定
src/app/components/asset/asset.component.html
- 46
+ 39
Liquid Asset pegged-in amount
asset.pegged-in
@@ -1695,7 +1694,7 @@
解锁
src/app/components/asset/asset.component.html
- 50
+ 43
Liquid Asset pegged-out amount
asset.pegged-out
@@ -1705,7 +1704,7 @@
燃烧量
src/app/components/asset/asset.component.html
- 58
+ 51
Liquid Asset burned amount
asset.burned-amount
@@ -1715,11 +1714,11 @@
流通量
src/app/components/asset/asset.component.html
- 62
+ 55
src/app/components/asset/asset.component.html
- 66
+ 59
Liquid Asset circulating amount
asset.circulating-amount
@@ -1756,7 +1755,7 @@
加载资产数据时出错
src/app/components/asset/asset.component.html
- 141
+ 152
asset.error.loading-asset-data
@@ -1765,9 +1764,141 @@
资产:
src/app/components/asset/asset.component.ts
- 73
+ 75
+
+ Group of assets
+
+ src/app/components/assets/asset-group/asset-group.component.html
+ 8,9
+
+
+ src/app/components/assets/assets-featured/assets-featured.component.html
+ 9,10
+
+
+
+ Assets
+ 资产
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 3
+
+
+ src/app/components/assets/assets-nav/assets-nav.component.ts
+ 42
+
+
+ src/app/components/assets/assets.component.ts
+ 44
+
+
+ src/app/components/liquid-master-page/liquid-master-page.component.html
+ 46,48
+
+ Assets page header
+
+
+ Featured
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 9
+
+
+
+ All
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 64,70
+
+
+ src/app/components/pool/pool.component.html
+ 149,151
+
+
+ src/app/components/pool/pool.component.html
+ 172,174
+
+
+ src/app/components/pool/pool.component.html
+ 429,431
+
+
+ src/app/components/pool/pool.component.html
+ 455,457
+
+
+
+ Search asset
+ 搜索资产
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 19
+
+ Search Assets Placeholder Text
+
+
+ Clear
+ 清空
+
+ src/app/components/assets/assets-nav/assets-nav.component.html
+ 21
+
+ Search Clear Button
+
+
+ Ticker
+ 代币
+
+ src/app/components/assets/assets.component.html
+ 5,6
+
+
+ src/app/components/assets/assets.component.html
+ 30,31
+
+ Asset ticker header
+
+
+ Issuer domain
+ 发行方
+
+ src/app/components/assets/assets.component.html
+ 6,9
+
+
+ src/app/components/assets/assets.component.html
+ 31,34
+
+ Asset Issuer Domain header
+
+
+ Asset ID
+ 资产 ID
+
+ src/app/components/assets/assets.component.html
+ 7,10
+
+
+ src/app/components/assets/assets.component.html
+ 32,36
+
+ Asset ID header
+
+
+ Error loading assets data.
+ 加载资产数据时出错。
+
+ src/app/components/assets/assets.component.html
+ 48,53
+
+ Asset data load error
+
Offline
离线
@@ -1777,7 +1908,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 7,8
+ 8,9
src/app/components/master-page/master-page.component.html
@@ -1794,7 +1925,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 8,13
+ 9,14
src/app/components/master-page/master-page.component.html
@@ -1811,7 +1942,7 @@
src/app/components/liquid-master-page/liquid-master-page.component.html
- 21,22
+ 22,23
src/app/components/master-page/master-page.component.html
@@ -1824,15 +1955,15 @@
仪表板
src/app/components/bisq-master-page/bisq-master-page.component.html
- 30,32
+ 31,33
src/app/components/liquid-master-page/liquid-master-page.component.html
- 30,33
+ 32,34
src/app/components/master-page/master-page.component.html
- 33,35
+ 32,34
master-page.dashboard
@@ -1841,11 +1972,7 @@
统计
src/app/components/bisq-master-page/bisq-master-page.component.html
- 39,42
-
-
- src/app/components/master-page/master-page.component.html
- 43,47
+ 40,42
master-page.stats
@@ -1854,14 +1981,185 @@
文档
src/app/components/bisq-master-page/bisq-master-page.component.html
- 42,45
+ 43,45
src/app/components/liquid-master-page/liquid-master-page.component.html
- 47,50
+ 49,51
master-page.docs
+
+ Block Fee Rates
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 14
+
+ mining.block-fee-rates
+
+
+ Block Fees
+
+ src/app/components/block-fees-graph/block-fees-graph.component.html
+ 5,7
+
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 58
+
+
+ src/app/components/graphs/graphs.component.html
+ 16
+
+ mining.block-fees
+
+
+ Fees
+ 费用
+
+ src/app/components/block-fees-graph/block-fees-graph.component.ts
+ 160,158
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 16,17
+
+
+ src/app/components/pool/pool.component.html
+ 217,219
+
+
+ src/app/components/pool/pool.component.html
+ 265,267
+
+
+
+ Block Rewards
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.html
+ 6,8
+
+
+ src/app/components/block-rewards-graph/block-rewards-graph.component.ts
+ 56
+
+
+ src/app/components/graphs/graphs.component.html
+ 18
+
+ mining.block-rewards
+
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 216,218
+
+
+ src/app/components/pool/pool.component.html
+ 264,266
+
+
+
+ Block Sizes and Weights
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.html
+ 4,6
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 65
+
+
+ src/app/components/graphs/graphs.component.html
+ 20
+
+ mining.block-sizes-weights
+
+
+ Size
+ 大小
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 181,180
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 227,225
+
+
+ src/app/components/block/block.component.html
+ 64,66
+
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,20
+
+
+ src/app/components/latest-blocks/latest-blocks.component.html
+ 13,16
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 32,35
+
+
+ src/app/components/mempool-graph/mempool-graph.component.ts
+ 260
+
+
+ src/app/components/pool/pool.component.html
+ 219,222
+
+
+ src/app/components/pool/pool.component.html
+ 267,271
+
+
+ src/app/components/transaction/transaction.component.html
+ 212,214
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,119
+
+
+
+ Weight
+ 权重
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 189,188
+
+
+ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts
+ 258,255
+
+
+ src/app/components/block/block.component.html
+ 68,70
+
+
+ src/app/components/transaction/transaction.component.html
+ 220,222
+
+
Next Block
下一个区块
@@ -1873,6 +2171,10 @@
src/app/components/block/block.component.html
19,20
+
+ src/app/components/mempool-block/mempool-block.component.ts
+ 71
+
Next Block
@@ -1884,53 +2186,6 @@
Previous Block
-
- Timestamp
- 时间戳
-
- src/app/components/block/block.component.html
- 55,57
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 10,12
-
- block.timestamp
-
-
- Size
- 大小
-
- src/app/components/block/block.component.html
- 64,66
-
-
- src/app/components/latest-blocks/latest-blocks.component.html
- 13,16
-
-
- src/app/components/mempool-block/mempool-block.component.html
- 32,35
-
-
- src/app/components/mempool-graph/mempool-graph.component.ts
- 257
-
-
- src/app/dashboard/dashboard.component.html
- 94,97
-
- block.size
-
-
- Weight
- 权重
-
- src/app/components/block/block.component.html
- 68,70
-
- block.weight
-
Median fee
中位数矿工手续费
@@ -1957,7 +2212,7 @@
src/app/components/blockchain-blocks/blockchain-blocks.component.html
- 14,16
+ 14,17
src/app/components/fees-box/fees-box.component.html
@@ -1985,7 +2240,7 @@
src/app/components/mempool-blocks/mempool-blocks.component.html
- 13,15
+ 13,16
src/app/components/transaction/transaction.component.html
@@ -2005,15 +2260,15 @@
src/app/components/transactions-list/transactions-list.component.html
- 231
+ 259
src/app/dashboard/dashboard.component.html
- 130,134
+ 159,163
src/app/dashboard/dashboard.component.html
- 185,189
+ 235,239
sat/vB
shared.sat-vbyte
@@ -2048,11 +2303,15 @@
总手续费
src/app/components/block/block.component.html
- 83,84
+ 83,85
src/app/components/block/block.component.html
- 98,100
+ 109,111
+
+
+ src/app/components/mempool-block/mempool-block.component.html
+ 24,25
Total fees in a block
block.total-fees
@@ -2062,11 +2321,11 @@
补贴+手续费:
src/app/components/block/block.component.html
- 90,92
+ 98,100
src/app/components/block/block.component.html
- 102,106
+ 113,117
Total subsidy and fees in a block
block.subsidy-and-fees
@@ -2076,7 +2335,7 @@
矿工
src/app/components/block/block.component.html
- 107,108
+ 118,120
block.miner
@@ -2085,7 +2344,7 @@
字节
src/app/components/block/block.component.html
- 129,131
+ 151,153
block.bits
@@ -2094,7 +2353,7 @@
哈希树
src/app/components/block/block.component.html
- 133,135
+ 155,157
block.merkle-root
@@ -2103,7 +2362,27 @@
难度
src/app/components/block/block.component.html
- 143,146
+ 165,168
+
+
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 7,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 14,16
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 73,75
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 237,236
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 305,302
block.difficulty
@@ -2112,7 +2391,7 @@
随机数
src/app/components/block/block.component.html
- 147,149
+ 169,171
block.nonce
@@ -2121,7 +2400,7 @@
区块头字节
src/app/components/block/block.component.html
- 151,152
+ 173,174
block.header
@@ -2130,7 +2409,7 @@
明细
src/app/components/block/block.component.html
- 162,167
+ 184,188
src/app/components/transaction/transaction.component.html
@@ -2144,7 +2423,7 @@
在加载区块数据时出错
src/app/components/block/block.component.html
- 256,266
+ 278,288
block.error.loading-block-data
@@ -2153,9 +2432,75 @@
区块 :
src/app/components/block/block.component.ts
- 141
+ 146
+
+ Pool
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 12,13
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 86,87
+
+
+ src/app/dashboard/dashboard.component.html
+ 114,115
+
+ mining.pool-name
+
+
+ Mined
+ 已出块
+
+ 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
+
+
+ src/app/components/pool/pool.component.html
+ 262,263
+
+
+ src/app/dashboard/dashboard.component.html
+ 113,114
+
+ latest-blocks.mined
+
+
+ TXs
+ 交易
+
+ src/app/components/blocks-list/blocks-list.component.html
+ 18,19
+
+
+ src/app/components/pool/pool.component.html
+ 219,221
+
+
+ src/app/components/pool/pool.component.html
+ 267,269
+
+
+ src/app/dashboard/dashboard.component.html
+ 116,117
+
+
+ src/app/dashboard/dashboard.component.html
+ 241,245
+
+ dashboard.txs
+
Copied!
已复制!
@@ -2164,850 +2509,128 @@
15
-
- API service
- API服务
+
+ Adjusted
- src/app/components/docs/api-docs.component.html
- 12,14
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 6,8
- api-docs.title
+ mining.adjusted
-
- Endpoint
- Endpoint
+
+ Change
- src/app/components/docs/api-docs.component.html
- 32,33
+ src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+ 8,11
-
- src/app/components/docs/api-docs.component.html
- 49,50
-
-
- src/app/components/docs/api-docs.component.html
- 62,63
-
-
- src/app/components/docs/api-docs.component.html
- 75,76
-
-
- src/app/components/docs/api-docs.component.html
- 88,89
-
-
- src/app/components/docs/api-docs.component.html
- 101,102
-
-
- src/app/components/docs/api-docs.component.html
- 114,115
-
-
- src/app/components/docs/api-docs.component.html
- 127,128
-
-
- src/app/components/docs/api-docs.component.html
- 140,141
-
-
- src/app/components/docs/api-docs.component.html
- 157,158
-
-
- src/app/components/docs/api-docs.component.html
- 174,175
-
-
- src/app/components/docs/api-docs.component.html
- 187,188
-
-
- src/app/components/docs/api-docs.component.html
- 200,201
-
-
- src/app/components/docs/api-docs.component.html
- 213,214
-
-
- src/app/components/docs/api-docs.component.html
- 226,227
-
-
- src/app/components/docs/api-docs.component.html
- 243,244
-
-
- src/app/components/docs/api-docs.component.html
- 268,269
-
-
- src/app/components/docs/api-docs.component.html
- 285,286
-
-
- src/app/components/docs/api-docs.component.html
- 298,299
-
-
- src/app/components/docs/api-docs.component.html
- 311,312
-
-
- src/app/components/docs/api-docs.component.html
- 324,325
-
-
- src/app/components/docs/api-docs.component.html
- 337,338
-
-
- src/app/components/docs/api-docs.component.html
- 350,351
-
-
- src/app/components/docs/api-docs.component.html
- 363,364
-
-
- src/app/components/docs/api-docs.component.html
- 376,377
-
-
- src/app/components/docs/api-docs.component.html
- 389,390
-
-
- src/app/components/docs/api-docs.component.html
- 402,403
-
-
- src/app/components/docs/api-docs.component.html
- 415,416
-
-
- src/app/components/docs/api-docs.component.html
- 428,429
-
-
- src/app/components/docs/api-docs.component.html
- 445,446
-
-
- src/app/components/docs/api-docs.component.html
- 458,459
-
-
- src/app/components/docs/api-docs.component.html
- 475,476
-
-
- src/app/components/docs/api-docs.component.html
- 488,489
-
-
- src/app/components/docs/api-docs.component.html
- 501,502
-
-
- src/app/components/docs/api-docs.component.html
- 518,519
-
-
- src/app/components/docs/api-docs.component.html
- 531,532
-
-
- src/app/components/docs/api-docs.component.html
- 544,545
-
-
- src/app/components/docs/api-docs.component.html
- 557,558
-
-
- src/app/components/docs/api-docs.component.html
- 570,571
-
-
- src/app/components/docs/api-docs.component.html
- 583,584
-
-
- src/app/components/docs/api-docs.component.html
- 596,597
-
-
- src/app/components/docs/api-docs.component.html
- 609,610
-
-
- src/app/components/docs/api-docs.component.html
- 622,623
-
-
- src/app/components/docs/api-docs.component.html
- 635,636
-
-
- src/app/components/docs/api-docs.component.html
- 648,651
-
-
- src/app/components/docs/api-docs.component.html
- 666,669
-
- Api docs endpoint
+ mining.change
-
- Description
- 描述
+
+ Difficulty Adjustment
+ 难度调整
- src/app/components/docs/api-docs.component.html
- 36,37
+ src/app/components/difficulty/difficulty.component.html
+ 1,5
- src/app/components/docs/api-docs.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 24
+
+ dashboard.difficulty-adjustment
+
+
+ Remaining
+ 剩余
+
+ src/app/components/difficulty/difficulty.component.html
+ 7,9
+
+
+ src/app/components/difficulty/difficulty.component.html
+ 66,69
+
+ difficulty-box.remaining
+
+
+ blocks
+ 区块
+
+ src/app/components/difficulty/difficulty.component.html
+ 10,11
+
+
+ src/app/components/difficulty/difficulty.component.html
53,54
- src/app/components/docs/api-docs.component.html
- 66,67
+ src/app/components/footer/footer.component.html
+ 25,26
- src/app/components/docs/api-docs.component.html
- 79,80
-
-
- src/app/components/docs/api-docs.component.html
- 92,94
-
-
- src/app/components/docs/api-docs.component.html
- 105,106
-
-
- src/app/components/docs/api-docs.component.html
- 118,119
-
-
- src/app/components/docs/api-docs.component.html
- 131,132
-
-
- src/app/components/docs/api-docs.component.html
- 144,145
-
-
- src/app/components/docs/api-docs.component.html
- 161,162
-
-
- src/app/components/docs/api-docs.component.html
- 178,179
-
-
- src/app/components/docs/api-docs.component.html
- 191,192
-
-
- src/app/components/docs/api-docs.component.html
- 204,205
-
-
- src/app/components/docs/api-docs.component.html
- 217,218
-
-
- src/app/components/docs/api-docs.component.html
- 230,231
-
-
- src/app/components/docs/api-docs.component.html
- 247,248
-
-
- src/app/components/docs/api-docs.component.html
- 259,260
-
-
- src/app/components/docs/api-docs.component.html
- 272,273
-
-
- src/app/components/docs/api-docs.component.html
- 289,290
-
-
- src/app/components/docs/api-docs.component.html
- 302,303
-
-
- src/app/components/docs/api-docs.component.html
- 315,316
-
-
- src/app/components/docs/api-docs.component.html
- 328,329
-
-
- src/app/components/docs/api-docs.component.html
- 341,342
-
-
- src/app/components/docs/api-docs.component.html
- 354,355
-
-
- src/app/components/docs/api-docs.component.html
- 367,369
-
-
- src/app/components/docs/api-docs.component.html
- 380,381
-
-
- src/app/components/docs/api-docs.component.html
- 393,394
-
-
- src/app/components/docs/api-docs.component.html
- 406,407
-
-
- src/app/components/docs/api-docs.component.html
- 419,420
-
-
- src/app/components/docs/api-docs.component.html
- 432,433
-
-
- src/app/components/docs/api-docs.component.html
- 449,450
-
-
- src/app/components/docs/api-docs.component.html
- 462,463
-
-
- src/app/components/docs/api-docs.component.html
- 479,480
-
-
- src/app/components/docs/api-docs.component.html
- 492,493
-
-
- src/app/components/docs/api-docs.component.html
- 505,506
-
-
- src/app/components/docs/api-docs.component.html
- 522,523
-
-
- src/app/components/docs/api-docs.component.html
- 535,536
-
-
- src/app/components/docs/api-docs.component.html
- 548,549
-
-
- src/app/components/docs/api-docs.component.html
- 561,562
-
-
- src/app/components/docs/api-docs.component.html
- 574,575
-
-
- src/app/components/docs/api-docs.component.html
- 587,588
-
-
- src/app/components/docs/api-docs.component.html
- 600,601
-
-
- src/app/components/docs/api-docs.component.html
- 613,614
-
-
- src/app/components/docs/api-docs.component.html
- 626,627
-
-
- src/app/components/docs/api-docs.component.html
- 639,640
-
-
- src/app/components/docs/api-docs.component.html
- 652,653
-
-
- src/app/components/docs/api-docs.component.html
- 670,671
+ src/app/components/mempool-blocks/mempool-blocks.component.html
+ 35,36
+ shared.blocks
-
- Returns details about difficulty adjustment.
- 返回关于难度调整的详细信息
+
+ block
+ 区块
- src/app/components/docs/api-docs.component.html
- 37,39
+ src/app/components/difficulty/difficulty.component.html
+ 11,12
+
+ src/app/components/difficulty/difficulty.component.html
+ 54,55
+
+
+ src/app/components/footer/footer.component.html
+ 26,27
+
+ shared.block
-
- Provides list of available currencies for a given base currency.
- 提供给定基础货币的可用货币列表。
+
+ Estimate
+ 预估
- src/app/components/docs/api-docs.component.html
- 54,56
+ src/app/components/difficulty/difficulty.component.html
+ 16,17
+
+ src/app/components/difficulty/difficulty.component.html
+ 73,76
+
+ difficulty-box.estimate
-
- Provides list of open offer prices for a single market.
- 提供任一交易市场的可用报价价格列表。
+
+ Previous
+ 之前
- src/app/components/docs/api-docs.component.html
- 67,69
+ src/app/components/difficulty/difficulty.component.html
+ 31,33
+ difficulty-box.previous
-
- Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
- 提供特定市场的最高价/最低价/开盘/收盘数据。这可以用来生成一个柱状图。
+
+ Current Period
+ 当前阶段
- src/app/components/docs/api-docs.component.html
- 80,82
+ src/app/components/difficulty/difficulty.component.html
+ 43,44
+
+ src/app/components/difficulty/difficulty.component.html
+ 80,83
+
+ difficulty-box.current-period
-
- Provides list of available markets.
- 提供可用的交易市场列表。
+
+ Next Halving
- src/app/components/docs/api-docs.component.html
- 93,95
+ src/app/components/difficulty/difficulty.component.html
+ 50,52
-
-
- Provides list of open offer details for a single market.
- 提供任一交易市场的可用报价详情列表。
-
- src/app/components/docs/api-docs.component.html
- 106,108
-
-
-
- Provides 24 hour price ticker for single market or all markets
- 提供单一市场或所有市场的 24 小时价格行情
-
- src/app/components/docs/api-docs.component.html
- 119,121
-
-
-
- Provides list of completed trades for a single market.
- 提供单一市场的已完成交易列表。
-
- src/app/components/docs/api-docs.component.html
- 132,134
-
-
-
- Provides periodic volume data in terms of base currency for one or all markets.
- 提供对单一市场或所有市场以基础货币为单位的定期交易量数据。
-
- src/app/components/docs/api-docs.component.html
- 145,147
-
-
-
- Returns statistics about all Bisq transactions.
- 返回所有关于Bisq交易的统计信息。
-
- src/app/components/docs/api-docs.component.html
- 162,164
-
-
-
- Returns details about an address. Available fields: address , chain_stats , and mempool_stats . chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count , and spent_txo_sum .
- 返回关于地址的详细信息。可用字段: address , chain_stats ,与 mempool_stats 。 chain,mempool _stats each contain an object with tx_count , funded_txo_count , funded_txo_sum , spent_txo_count与 spent_txo_sum 。
-
- src/app/components/docs/api-docs.component.html
- 179,180
-
-
-
- Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below).
- 获取指定 地址/合约 的交易历史,按最新排序。最多返回 50 个内存池交易加上前 25 个已确认的交易。您可以使用 :last_seen_txid (见下文)请求更多确认的交易。
-
- src/app/components/docs/api-docs.component.html
- 192,193
-
-
-
- Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
- 获取指定地址/合约的确认交易历史,按最新排序。每页返回 25 个交易。可以通过指定上一个查询看到的 last txid seen 来请求更多。
-
- src/app/components/docs/api-docs.component.html
- 205,207
-
-
-
- Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).
- 获取指定地址/合约的未确认交易历史记录。最多返回 50 个交易(无分页)。
-
- src/app/components/docs/api-docs.component.html
- 218,220
-
-
-
- Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid , vout , value , and status (with the status of the funding tx). There is also a valuecommitment field that may appear in place of value , plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof , and range_proof .
- 获取与地址/合约关联的未花费交易输出列表。可用字段: txid , vout , value , 已 status (与转入 tx 的状态)。 There is also a valuecommitment field that may appear in place of value ,plus the following additional fields: asset / assetcommitment , nonce / noncecommitment , surjection_proof ,and range_proof 。
-
- src/app/components/docs/api-docs.component.html
- 231,233
-
-
-
- Returns information about a Liquid asset.
- 返回关于流动资产的信息。
-
- src/app/components/docs/api-docs.component.html
- 248,250
-
-
-
- Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset.
- 返回与指定流动资产相关的交易。对于网络的原生资产,返回锁定、解锁和销毁交易的列表。对于用户发行的资产,返回发行、再发行、销毁交易的列表。不包括转移此资产的常规交易。
-
- src/app/components/docs/api-docs.component.html
- 260,262
-
-
-
- Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units.
- 获取指定资产的当前总供应量。对于原生资产(L-BTC),计算公式为 [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount。对于已发行资产,这计算为 [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount。不适用于盲发的资产。如果指定了 /decimal,则根据资产的可分性以小数形式返回供应量。否则,以基本单位返回。
-
- src/app/components/docs/api-docs.component.html
- 273,275
-
-
-
- Returns details about a block. Available fields: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , and previousblockhash .
- 返回一个区块详情。可用字段: id , heigh , version , timestamp , bits , nonce , merkle_root , tx_count , size , weight , proof , 与 previousblockhash 。
-
- src/app/components/docs/api-docs.component.html
- 290,291
-
-
-
- Returns the hex-encoded block header.
- 返回区块头以十六进制。
-
- src/app/components/docs/api-docs.component.html
- 303,305
-
-
-
- Returns the hash of the block currently at :height .
- 返回当前区块 :高度 的哈希值。
-
- src/app/components/docs/api-docs.component.html
- 316,317
-
-
-
- Returns the raw block representation in binary.
- 返回区块信息的二进制原始值。
-
- src/app/components/docs/api-docs.component.html
- 329,331
-
-
-
- Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain).
- 返回一个区块的确认状态。可用字段: in_best_chain (布尔值,对于无主区块为假), next_best (下一个区块的哈希值,只对最佳链中的区块有效)。
-
- src/app/components/docs/api-docs.component.html
- 342,343
-
-
-
- Returns the height of the last block.
- 返回至最后区块高度
-
- src/app/components/docs/api-docs.component.html
- 355,357
-
-
-
- Returns the hash of the last block.
- 返回至最后区块哈希值
-
- src/app/components/docs/api-docs.component.html
- 368,370
-
-
-
- Returns the transaction at index :index within the specified block.
- 返回指定区块交易索引 :索引 。
-
- src/app/components/docs/api-docs.component.html
- 381,382
-
-
-
- Returns a list of all txids in the block.
- 返回该区块的所有交易 TXID。
-
- src/app/components/docs/api-docs.component.html
- 394,396
-
-
-
- Returns a list of transactions in the block (up to 25 transactions beginning at start_index ). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
- 返回该区块中的交易列表(最多 25 个交易,从第 art_index 开始)。这里返回的交易没有 status 字段,因为所有的交易都共享同一个区块和确认状态。
-
- src/app/components/docs/api-docs.component.html
- 407,408
-
-
-
- Returns the 10 newest blocks starting at the tip or at :start_height if specified.
- 返回指定在 :起始高度 的最近10个区块。
-
- src/app/components/docs/api-docs.component.html
- 420,421
-
-
- src/app/components/docs/api-docs.component.html
- 433,434
-
-
-
- Returns current mempool as projected blocks.
- 返回当前内存池的预测区块。
-
- src/app/components/docs/api-docs.component.html
- 450,452
-
- API Docs for /api/v1/fees/mempool-blocks
- api-docs.fees.mempool-blocks
-
-
- Returns our currently suggested fees for new transactions.
- 返回当前我们为新交易建议的手续费。
-
- src/app/components/docs/api-docs.component.html
- 463,465
-
- API Docs for /api/v1/fees/recommended
- api-docs.fees.recommended
-
-
- Returns current mempool backlog statistics.
- 返回当前区块积压统计信息。
-
- src/app/components/docs/api-docs.component.html
- 480,482
-
- API Docs for /api/mempool
- api-docs.mempool.mempool
-
-
- Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.
- 以数组形式获取内存池中完整txid列表。txid的顺序是随机的并不符合bitcoind。
-
- src/app/components/docs/api-docs.component.html
- 493,495
-
- API Docs for /api/mempool/txids
- api-docs.mempool.txids
-
-
- Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid , fee , vsize , and value .
- 获得最后10个进入内存池的交易列表。每个交易对象包含简化的概览数据,有以下字段。 txid , fee , vsize ,与 value 。
-
- src/app/components/docs/api-docs.component.html
- 506,507
-
- API Docs for /api/mempool/recent
- api-docs.mempool.recent
-
-
- Returns the ancestors and the best descendant fees for a transaction.
- 返回交易的初始和最佳后续费用。
-
- src/app/components/docs/api-docs.component.html
- 523,525
-
- API Docs for /api/v1/fees/cpfp
- api-docs.fees.cpfp
-
-
- Returns details about a transaction. Available fields: txid , version , locktime , size , weight , fee , vin , vout , and status .
- 返回交易详细初始信息。可用字段: txid(交易txid) , version(版本) , locktime(锁定时间) , size(大小) , weight(权重) , fee(手续费) , vin , vout ,与 状态 。
-
- src/app/components/docs/api-docs.component.html
- 536,537
-
-
-
- Returns a transaction serialized as hex.
- 以十六进制返回序列化交易信息
-
- src/app/components/docs/api-docs.component.html
- 549,551
-
-
-
- Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
- 使用 bitcoind 的 merkleblock 格式返回交易的哈希包含证明。
-
- src/app/components/docs/api-docs.component.html
- 562,563
-
-
-
- Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
- 使用 Electrum 的 blockchain.transaction.get_merkle 格式 返回交易的哈希包含证明。
-
- src/app/components/docs/api-docs.component.html
- 575,576
-
-
-
- Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx).
- 返回一个交易输出的支出状态。可用字段: spent (布尔值), txid (可选), vin (可选),与 status (可选,支出tx的状态)。
-
- src/app/components/docs/api-docs.component.html
- 588,589
-
-
-
- Returns the spending status of all transaction outputs.
- 返回所有交易输出的支出状态。
-
- src/app/components/docs/api-docs.component.html
- 601,603
-
-
-
- Returns a transaction as binary data.
- 以二进制数据形式返回至交易页面
-
- src/app/components/docs/api-docs.component.html
- 614,616
-
-
-
- Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional).
- 返回一个交易的确认状态。可用字段: confirmed (布尔值), block_height (可选)与 block_hash 。(可选)。
-
- src/app/components/docs/api-docs.component.html
- 627,628
-
-
-
- Returns :length of latest Bisq transactions, starting from :index.
- 返回从 :index 后 :length 最新Bisq交易。
-
- src/app/components/docs/api-docs.component.html
- 640,642
-
-
-
- Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success.
- 广播原始交易到网络。交易应该提供以十六进制写入请求响应。若成功 交易txid 会返回。
-
- src/app/components/docs/api-docs.component.html
- 653,654
-
-
-
- Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
- 默认推送: 操作: 'want', 数据: ['blocks', ...] 来表达你想要推送的内容。可用字段: blocks , mempool-blocks , live-2h-chart ,和 stats 。 推送与地址有关的事务。 'track-address': '3PbJ...bF9B' 接收所有包含该地址的新事务作为输入或输出。返回一个交易数组。 address-transactions 用于新的mempool交易, block-transactions 用于新的块确认交易。
-
- src/app/components/docs/api-docs.component.html
- 671,672
-
- api-docs.websocket.websocket
-
-
- API
- 应用程序接口
-
- src/app/components/docs/api-docs.component.ts
- 42
-
-
-
- Code Example
- 代码示例
-
- src/app/components/docs/code-template.component.html
- 6,7
-
-
- src/app/components/docs/code-template.component.html
- 13,14
-
-
- src/app/components/docs/code-template.component.html
- 29,30
-
- API Docs code example
-
-
- Install Package
- 安装包
-
- src/app/components/docs/code-template.component.html
- 23,24
-
- API Docs install lib
-
-
- Response
- 回复
-
- src/app/components/docs/code-template.component.html
- 36,37
-
- API Docs API response
-
-
- Documentation
- 文档
-
- src/app/components/docs/docs.component.html
- 4
-
-
- src/app/components/master-page/master-page.component.html
- 61,64
-
- documentation.title
-
-
- Privacy Policy
- 隐私协议
-
- src/app/components/docs/docs.component.html
- 35
-
-
- src/app/dashboard/dashboard.component.html
- 154,156
-
- Privacy Policy
- shared.privacy-policy
+ difficulty-box.next-halving
Low priority
@@ -3048,25 +2671,29 @@
fees-box.high-priority
-
- Tx vBytes per second:
- 交易字节/秒
+
+ Incoming transactions
+ 即将完成交易
src/app/components/footer/footer.component.html
- 5,7
+ 5,6
- footer.tx-vbytes-per-second
+
+ src/app/dashboard/dashboard.component.html
+ 268,269
+
+ dashboard.incoming-transactions
Backend is synchronizing
后端正在同步中...
src/app/components/footer/footer.component.html
- 7,11
+ 8,10
src/app/dashboard/dashboard.component.html
- 221,224
+ 271,274
dashboard.backend-is-synchronizing
@@ -3075,11 +2702,11 @@
字节/秒
src/app/components/footer/footer.component.html
- 11,16
+ 13,17
src/app/dashboard/dashboard.component.html
- 226,232
+ 276,281
vB/s
shared.vbytes-per-second
@@ -3089,11 +2716,11 @@
未确认
src/app/components/footer/footer.component.html
- 16,18
+ 19,21
src/app/dashboard/dashboard.component.html
- 189,190
+ 239,240
Unconfirmed count
dashboard.unconfirmed
@@ -3103,60 +2730,110 @@
内存池大小
src/app/components/footer/footer.component.html
- 20,21
+ 23,24
Mempool size
dashboard.mempool-size
-
- blocks
- 区块
+
+ Mining
+ 挖矿
- src/app/components/footer/footer.component.html
- 22,23
+ src/app/components/graphs/graphs.component.html
+ 5
-
- src/app/components/mempool-blocks/mempool-blocks.component.html
- 32,33
-
-
- src/app/dashboard/dashboard.component.html
- 242,243
-
- shared.blocks
+ mining
-
- block
- 区块
+
+ Pools Ranking
- src/app/components/footer/footer.component.html
- 23,24
+ src/app/components/graphs/graphs.component.html
+ 8
- src/app/dashboard/dashboard.component.html
- 243,244
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 29,31
- shared.block
+ mining.pools
-
- Mined
- 已出块
+
+ Pools Dominance
- src/app/components/latest-blocks/latest-blocks.component.html
- 11,12
+ src/app/components/graphs/graphs.component.html
+ 10
- src/app/dashboard/dashboard.component.html
- 92,93
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html
+ 6,8
- latest-blocks.mined
+ mining.pools-dominance
-
- Blocks
- 区块
+
+ Hashrate & Difficulty
- src/app/components/latest-blocks/latest-blocks.component.ts
- 39
+ src/app/components/graphs/graphs.component.html
+ 12
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 23,25
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 67
+
+ mining.hashrate-difficulty
+
+
+ Hashrate
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 8,10
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.html
+ 67,69
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 226,225
+
+
+ src/app/components/hashrate-chart/hashrate-chart.component.ts
+ 293,291
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 87,89
+
+ mining.hashrate
+
+
+ Pools Historical Dominance
+
+ src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts
+ 63
+
+
+
+ Indexing blocks
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 1
+
+
+
+ Indexing network hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 2
+
+
+
+ Indexing pools hashrate
+
+ src/app/components/indexing-progress/indexing-progress.component.html
+ 3
@@ -3164,31 +2841,56 @@
图表
src/app/components/liquid-master-page/liquid-master-page.component.html
- 36,39
+ 38,41
src/app/components/master-page/master-page.component.html
- 51,53
+ 41,43
src/app/components/statistics/statistics.component.ts
- 58
+ 62
master-page.graphs
+
+ Mining Dashboard
+
+ src/app/components/master-page/master-page.component.html
+ 35,37
+
+
+ src/app/components/mining-dashboard/mining-dashboard.component.ts
+ 16
+
+ mining.mining-dashboard
+
TV view
TV模式
src/app/components/master-page/master-page.component.html
- 54,57
+ 44,46
src/app/components/television/television.component.ts
- 27
+ 37
master-page.tvview
+
+ Documentation
+ 文档
+
+ src/app/components/master-page/master-page.component.html
+ 47,49
+
+
+ src/app/docs/docs/docs.component.html
+ 4
+
+ documentation.title
+
Fee span
费用范围
@@ -3198,23 +2900,6 @@
mempool-block.fee-span
-
- Total fees
- 总费用
-
- src/app/components/mempool-block/mempool-block.component.html
- 24,25
-
- mempool-block.total-fees
-
-
- Next block
- 下一区块
-
- src/app/components/mempool-block/mempool-block.component.ts
- 71
-
-
Stack of mempool blocks
个内存池区块
@@ -3236,7 +2921,7 @@
范围
src/app/components/mempool-graph/mempool-graph.component.ts
- 256
+ 259
@@ -3244,33 +2929,310 @@
总和
src/app/components/mempool-graph/mempool-graph.component.ts
- 258
+ 261
-
- Unknown
- 未知
+
+ Reward stats
- src/app/components/miner/miner.component.html
+ src/app/components/mining-dashboard/mining-dashboard.component.html
10
- miner.tag.unknown-miner
+ mining.reward-stats
-
- Identified by payout address: ' '
- 由支付地址识别:
+
+ (144 blocks)
- src/app/components/miner/miner.component.ts
- 42
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 11
+ mining.144-blocks
-
- Identified by coinbase tag: ' '
- Coinbase 提供标签:
+
+ Latest blocks
+ 最新区块
- src/app/components/miner/miner.component.ts
+ src/app/components/mining-dashboard/mining-dashboard.component.html
52
+
+ src/app/dashboard/dashboard.component.html
+ 109,112
+
+ dashboard.latest-blocks
+
+
+ Adjustments
+
+ src/app/components/mining-dashboard/mining-dashboard.component.html
+ 63
+
+ dashboard.adjustments
+
+
+ Pools Luck (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 8,12
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 124,126
+
+ mining.miners-luck
+
+
+ Blocks (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 14,18
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 130,132
+
+ master-page.blocks
+
+
+ Pools Count (1w)
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 20,24
+
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 136,138
+
+ mining.miners-count
+
+
+ Rank
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 84,86
+
+ mining.rank
+
+
+ Empty blocks
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 89,92
+
+ mining.empty-blocks
+
+
+ All miners
+
+ src/app/components/pool-ranking/pool-ranking.component.html
+ 107,108
+
+ mining.all-miners
+
+
+ Mining Pools
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 55
+
+
+
+ blocks
+ 区块
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 160,158
+
+
+ src/app/components/pool-ranking/pool-ranking.component.ts
+ 163,162
+
+
+
+ Tags
+
+ src/app/components/pool/pool.component.html
+ 22,23
+
+
+ src/app/components/pool/pool.component.html
+ 30,31
+
+
+ src/app/components/pool/pool.component.html
+ 321,323
+
+
+ src/app/components/pool/pool.component.html
+ 329,331
+
+ mining.tags
+
+
+ Show all
+
+ src/app/components/pool/pool.component.html
+ 53,55
+
+
+ src/app/components/pool/pool.component.html
+ 68,70
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 141,144
+
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 249,251
+
+ show-all
+
+
+ Hide
+
+ src/app/components/pool/pool.component.html
+ 55,58
+
+ hide
+
+
+ Hashrate (24h)
+
+ src/app/components/pool/pool.component.html
+ 91,93
+
+
+ src/app/components/pool/pool.component.html
+ 114,116
+
+
+ src/app/components/pool/pool.component.html
+ 368,370
+
+
+ src/app/components/pool/pool.component.html
+ 395,397
+
+ mining.hashrate-24h
+
+
+ Estimated
+
+ src/app/components/pool/pool.component.html
+ 96,97
+
+
+ src/app/components/pool/pool.component.html
+ 118,119
+
+
+ src/app/components/pool/pool.component.html
+ 373,374
+
+
+ src/app/components/pool/pool.component.html
+ 399,400
+
+ mining.estimated
+
+
+ Reported
+
+ src/app/components/pool/pool.component.html
+ 97,98
+
+
+ src/app/components/pool/pool.component.html
+ 119,120
+
+
+ src/app/components/pool/pool.component.html
+ 374,375
+
+
+ src/app/components/pool/pool.component.html
+ 400,401
+
+ mining.reported
+
+
+ Luck
+
+ src/app/components/pool/pool.component.html
+ 98,101
+
+
+ src/app/components/pool/pool.component.html
+ 120,123
+
+
+ src/app/components/pool/pool.component.html
+ 375,378
+
+
+ src/app/components/pool/pool.component.html
+ 401,404
+
+ mining.luck
+
+
+ Mined blocks
+
+ src/app/components/pool/pool.component.html
+ 141,143
+
+
+ src/app/components/pool/pool.component.html
+ 165,167
+
+
+ src/app/components/pool/pool.component.html
+ 421,423
+
+
+ src/app/components/pool/pool.component.html
+ 448,450
+
+ mining.mined-blocks
+
+
+ 24h
+ 24小时
+
+ src/app/components/pool/pool.component.html
+ 147
+
+
+ src/app/components/pool/pool.component.html
+ 170
+
+ 24h
+
+
+ 1w
+ 一周
+
+ src/app/components/pool/pool.component.html
+ 148
+
+
+ src/app/components/pool/pool.component.html
+ 171
+
+ 1w
+
+
+ Coinbase tag
+
+ src/app/components/pool/pool.component.html
+ 215,217
+
+
+ src/app/components/pool/pool.component.html
+ 263,265
+
+ latest-blocks.coinbasetag
Broadcast Transaction
@@ -3285,14 +3247,13 @@
src/app/dashboard/dashboard.component.html
- 156,162
+ 185,192
Broadcast Transaction
shared.broadcast-transaction
-
- Transaction Hex
- 交易字节
+
+ Transaction hex
src/app/components/push-transaction/push-transaction.component.html
6
@@ -3303,6 +3264,75 @@
transaction.hex
+
+ Miners Reward
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 4,6
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 46,49
+
+ mining.rewards
+
+
+ Amount being paid to miners in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 6,8
+
+ mining.rewards-desc
+
+
+ Reward 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
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 60,63
+
+ mining.rewards-per-tx
+
+
+ Average miners' reward per transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 18,20
+
+ mining.rewards-per-tx-desc
+
+
+ sats/tx
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 21,24
+
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 33,36
+
+ sat/vB
+ shared.sat-vbyte
+
+
+ Fee paid on average for each transaction in the past 144 blocks
+
+ src/app/components/reward-stats/reward-stats.component.html
+ 31,32
+
+ mining.average-fee
+
TXID, block height, hash or address
交易ID、区块高度、哈希值或地址
@@ -3326,7 +3356,7 @@
赞助
src/app/components/sponsor/sponsor.component.html
- 3
+ 7
src/app/components/sponsor/sponsor.component.ts
@@ -3339,7 +3369,7 @@
请求开票
src/app/components/sponsor/sponsor.component.html
- 49
+ 53
about.sponsor.request-invoice
@@ -3348,7 +3378,7 @@
交易等待中...
src/app/components/sponsor/sponsor.component.html
- 138
+ 142
about.sponsor.waiting-for-transaction
@@ -3357,7 +3387,7 @@
确认捐赠!
src/app/components/sponsor/sponsor.component.html
- 144
+ 148
about.sponsor.donation-confirmed
@@ -3366,7 +3396,7 @@
感谢!
src/app/components/sponsor/sponsor.component.html
- 145
+ 149
about.sponsor.thank-you
@@ -3375,7 +3405,7 @@
交易字节/秒 (虚拟字节)
src/app/components/statistics/statistics.component.html
- 6
+ 7
statistics.memory-by-vBytes
@@ -3384,7 +3414,7 @@
过滤
src/app/components/statistics/statistics.component.html
- 40
+ 49
statistics.component-filter.title
@@ -3393,7 +3423,7 @@
倒置
src/app/components/statistics/statistics.component.html
- 62
+ 68
statistics.component-invert.title
@@ -3402,7 +3432,7 @@
交易字节/秒 (虚拟字节)
src/app/components/statistics/statistics.component.html
- 87
+ 88
statistics.transaction-vbytes-per-second
@@ -3621,21 +3651,11 @@
src/app/components/transactions-list/transactions-list.component.html
- 242,246
+ 270,273
Transaction unconfirmed state
transaction.unconfirmed
-
- Confirmed
- 已确认
-
- src/app/components/transaction/transaction.component.html
- 65,66
-
- Transaction Confirmed state
- transaction.confirmed
-
First seen
初次发现时间
@@ -3714,26 +3734,6 @@
Transaction Ancestor
transaction.ancestor
-
- Size
- 大小
-
- src/app/components/transaction/transaction.component.html
- 212,215
-
- Transaction Size
- transaction.size
-
-
- Weight
- 权重
-
- src/app/components/transaction/transaction.component.html
- 220,223
-
- Transaction Weight
- transaction.weight
-
Locktime
锁定时间
@@ -3771,15 +3771,19 @@
Transaction fee
transaction.fee
-
+
sat
聪
src/app/components/transaction/transaction.component.html
- 386,389
+ 386,387
- Transaction Fee sat
- transaction.fee.sat
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 259,260
+
+ sat
+ shared.sat
Effective fee rate
@@ -3796,7 +3800,7 @@
Coinbase
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.coinbase
@@ -3805,7 +3809,7 @@
(新产生的货币)
src/app/components/transactions-list/transactions-list.component.html
- 51
+ 54
transactions-list.newly-generated-coins
@@ -3814,7 +3818,7 @@
锁定
src/app/components/transactions-list/transactions-list.component.html
- 53,55
+ 56,58
transactions-list.peg-in
@@ -3823,7 +3827,7 @@
ScriptSig (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 86,88
+ 97,99
ScriptSig (ASM)
transactions-list.scriptsig.asm
@@ -3833,7 +3837,7 @@
ScriptSig (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 90,93
+ 101,104
ScriptSig (HEX)
transactions-list.scriptsig.hex
@@ -3843,7 +3847,7 @@
Witness
src/app/components/transactions-list/transactions-list.component.html
- 95,97
+ 106,108
transactions-list.witness
@@ -3852,16 +3856,24 @@
P2SH redeem script
src/app/components/transactions-list/transactions-list.component.html
- 99,100
+ 110,111
transactions-list.p2sh-redeem-script
+
+ P2TR tapscript
+
+ src/app/components/transactions-list/transactions-list.component.html
+ 114,116
+
+ transactions-list.p2tr-tapscript
+
P2WSH witness script
P2WSH witness script
src/app/components/transactions-list/transactions-list.component.html
- 103,104
+ 116,118
transactions-list.p2wsh-witness-script
@@ -3870,7 +3882,7 @@
nSequence
src/app/components/transactions-list/transactions-list.component.html
- 107,109
+ 121,123
transactions-list.nsequence
@@ -3879,7 +3891,7 @@
上一次输出脚本
src/app/components/transactions-list/transactions-list.component.html
- 112,113
+ 126,127
transactions-list.previous-output-script
@@ -3888,29 +3900,16 @@
之前输出类型
src/app/components/transactions-list/transactions-list.component.html
- 116,117
+ 130,131
transactions-list.previous-output-type
-
- Load all
- 加载全部
-
- src/app/components/transactions-list/transactions-list.component.html
- 127,130
-
-
- src/app/components/transactions-list/transactions-list.component.html
- 221,224
-
- transactions-list.load-all
-
Peg-out to
解锁至
src/app/components/transactions-list/transactions-list.component.html
- 146,147
+ 166,167
transactions-list.peg-out-to
@@ -3919,7 +3918,7 @@
ScriptPubKey (ASM)
src/app/components/transactions-list/transactions-list.component.html
- 199,201
+ 227,229
ScriptPubKey (ASM)
transactions-list.scriptpubkey.asm
@@ -3929,30 +3928,11 @@
ScriptPubKey (HEX)
src/app/components/transactions-list/transactions-list.component.html
- 203,206
+ 231,234
ScriptPubKey (HEX)
transactions-list.scriptpubkey.hex
-
- data
- 数据
-
- src/app/components/transactions-list/transactions-list.component.html
- 207,209
-
- transactions-list.vout.scriptpubkey-type.data
-
-
- sat
- 聪
-
- src/app/components/transactions-list/transactions-list.component.html
- 231,232
-
- sat
- shared.sat
-
This transaction saved % on fees by using native SegWit-Bech32
本交易通过使用原生SegWit-Bech32节省 %
@@ -4094,38 +4074,16 @@
src/app/dashboard/dashboard.component.html
- 33,36
+ 34,37
fees-box.transaction-fees
-
- Latest blocks
- 最新区块
-
- src/app/dashboard/dashboard.component.html
- 88,91
-
- dashboard.latest-blocks
-
-
- TXs
- 交易
-
- src/app/dashboard/dashboard.component.html
- 94,95
-
-
- src/app/dashboard/dashboard.component.html
- 191,195
-
- dashboard.latest-blocks.transaction-count
-
Latest transactions
最新交易
src/app/dashboard/dashboard.component.html
- 117,120
+ 146,149
dashboard.latest-transactions
@@ -4134,7 +4092,7 @@
美元
src/app/dashboard/dashboard.component.html
- 123,124
+ 152,153
dashboard.latest-transactions.USD
@@ -4143,7 +4101,7 @@
费用
src/app/dashboard/dashboard.component.html
- 124,126
+ 153,155
dashboard.latest-transactions.fee
@@ -4152,7 +4110,7 @@
更多
src/app/dashboard/dashboard.component.html
- 144,145
+ 173,174
dashboard.expand
@@ -4161,7 +4119,7 @@
收起
src/app/dashboard/dashboard.component.html
- 145,151
+ 174,180
dashboard.collapse
@@ -4170,7 +4128,7 @@
最低费用
src/app/dashboard/dashboard.component.html
- 182,183
+ 232,233
Minimum mempool fee
dashboard.minimum-fee
@@ -4180,7 +4138,7 @@
吹扫中
src/app/dashboard/dashboard.component.html
- 183,184
+ 233,234
Purgin below fee
dashboard.purging
@@ -4190,7 +4148,7 @@
内存占用
src/app/dashboard/dashboard.component.html
- 195,196
+ 245,246
Memory usage
dashboard.memory-usage
@@ -4200,75 +4158,95 @@
流通中的L-BTC
src/app/dashboard/dashboard.component.html
- 209,211
+ 259,261
dashboard.lbtc-pegs-in-circulation
-
- Incoming transactions
- 即将完成交易
+
+ API service
+ API服务
- src/app/dashboard/dashboard.component.html
- 218,219
+ src/app/docs/api-docs/api-docs.component.html
+ 37,39
- dashboard.incoming-transactions
+ api-docs.title
-
- Difficulty Adjustment
- 难度调整
+
+ Endpoint
+ Endpoint
- src/app/dashboard/dashboard.component.html
- 233,237
+ src/app/docs/api-docs/api-docs.component.html
+ 45,46
- dashboard.difficulty-adjustment
+
+ src/app/docs/api-docs/api-docs.component.html
+ 97,100
+
+ Api docs endpoint
-
- Remaining
- 剩余
+
+ Description
+ 描述
- src/app/dashboard/dashboard.component.html
- 239,241
+ src/app/docs/api-docs/api-docs.component.html
+ 62,63
- src/app/dashboard/dashboard.component.html
- 290,293
+ src/app/docs/api-docs/api-docs.component.html
+ 101,102
- difficulty-box.remaining
-
- Estimate
- 预估
+
+ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks , mempool-blocks , live-2h-chart , and stats . Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
+ 默认推送: 操作: 'want', 数据: ['blocks', ...] 来表达你想要推送的内容。可用字段: blocks , mempool-blocks , live-2h-chart ,和 stats 。 推送与地址有关的事务。 'track-address': '3PbJ...bF9B' 接收所有包含该地址的新事务作为输入或输出。返回一个交易数组。 address-transactions 用于新的mempool交易, block-transactions 用于新的块确认交易。
- src/app/dashboard/dashboard.component.html
- 248,249
+ src/app/docs/api-docs/api-docs.component.html
+ 102,103
-
- src/app/dashboard/dashboard.component.html
- 297,300
-
- difficulty-box.estimate
+ api-docs.websocket.websocket
-
- Previous
- 之前
+
+ API
+ 应用程序接口
- src/app/dashboard/dashboard.component.html
- 263,265
+ src/app/docs/api-docs/api-docs.component.ts
+ 48
- difficulty-box.previous
-
- Current Period
- 当前阶段
+
+ Code Example
+ 代码示例
- src/app/dashboard/dashboard.component.html
- 275,276
+ src/app/docs/code-template/code-template.component.html
+ 6,7
- src/app/dashboard/dashboard.component.html
- 304,307
+ src/app/docs/code-template/code-template.component.html
+ 13,14
- difficulty-box.current-period
+
+ src/app/docs/code-template/code-template.component.html
+ 29,30
+
+ API Docs code example
+
+
+ Install Package
+ 安装包
+
+ src/app/docs/code-template/code-template.component.html
+ 23,24
+
+ API Docs install lib
+
+
+ Response
+ 回复
+
+ src/app/docs/code-template/code-template.component.html
+ 36,37
+
+ API Docs API response
year
From 3a4f22ad173e93796e8209687cdea429ee54cefd Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Thu, 19 May 2022 12:21:41 -0400
Subject: [PATCH 12/25] Make small wording change for reward-stats
---
frontend/src/app/docs/api-docs/api-docs-data.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 f3c24b7f5..ff57aeb82 100644
--- a/frontend/src/app/docs/api-docs/api-docs-data.ts
+++ b/frontend/src/app/docs/api-docs/api-docs-data.ts
@@ -3754,7 +3754,7 @@ export const restApiDocsData = [
fragment: "get-reward-stats",
title: "GET Reward Stats",
description: {
- default: "Returns block reward and total transactions confirmed for each of the past :blockCount blocks."
+ default: "Returns block reward and total transactions confirmed for the past :blockCount blocks."
},
urlString: "/v1/mining/reward-stats/:blockCount",
showConditions: bitcoinNetworks,
From 7351a56a782c901f48429127f05e0e3ae0f71c43 Mon Sep 17 00:00:00 2001
From: hunicus <93150691+hunicus@users.noreply.github.com>
Date: Thu, 19 May 2022 12:55:20 -0400
Subject: [PATCH 13/25] Remove smaller time periods for hashrate endpoints
And clarify real-time hashrate data in /mining/hashrate.
---
frontend/src/app/docs/api-docs/api-docs-data.ts | 4 ++--
1 file changed, 2 insertions(+), 2 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 ff57aeb82..c018c572a 100644
--- a/frontend/src/app/docs/api-docs/api-docs-data.ts
+++ b/frontend/src/app/docs/api-docs/api-docs-data.ts
@@ -3196,7 +3196,7 @@ export const restApiDocsData = [
fragment: "get-mining-pool-hashrates",
title: "GET Mining Pool Hashrates",
description: {
- default: "Returns average hashrates (and share of total hashrate) of mining pools active in the specified trailing :timePeriod, in descending order of hashrate.
Leave :timePeriod unspecified to get all available data, or specify any of the following time periods: " + miningTimeIntervals + ".
"
+ default: "Returns average hashrates (and share of total hashrate) of mining pools active in the specified trailing :timePeriod, in descending order of hashrate.
Leave :timePeriod unspecified to get all available data, or specify any of the following time periods: " + miningTimeIntervals.substr(52) + ".
"
},
urlString: "/v1/mining/hashrate/pools/[:timePeriod]",
showConditions: bitcoinNetworks,
@@ -3634,7 +3634,7 @@ export const restApiDocsData = [
fragment: "get-hashrate",
title: "GET Hashrate",
description: {
- default: "Returns network-wide hashrate and difficulty figures over the specified trailing :timePeriod:
Current hashrate Current difficulty Historical daily average hashrates Historical difficulty Valid values for :timePeriod are " + miningTimeIntervals + ". If no time interval is specified, all available data is returned.
Be sure that INDEXING_BLOCKS_AMOUNT is set properly in your backend config so that enough blocks are indexed to properly serve your request.
"
+ default: "Returns network-wide hashrate and difficulty figures over the specified trailing :timePeriod:
Current (real-time) hashrate Current (real-time) difficulty Historical daily average hashrates Historical difficulty Valid values for :timePeriod are " + miningTimeIntervals.substr(52) + ". If no time interval is specified, all available data is returned.
Be sure that INDEXING_BLOCKS_AMOUNT is set properly in your backend config so that enough blocks are indexed to properly serve your request.
"
},
urlString: "/v1/mining/hashrate/[:timePeriod]",
showConditions: bitcoinNetworks,
From 1d8eb064f127fbc61ad95d5ddc6ed89f8ad5b5d3 Mon Sep 17 00:00:00 2001
From: softsimon
Date: Thu, 19 May 2022 23:47:44 +0400
Subject: [PATCH 14/25] Moving graphs and mining dashboard to a lazy loaded
module
---
frontend/src/app/app-routing.module.ts | 1058 +++++++----------
frontend/src/app/app.module.ts | 164 +--
frontend/src/app/bisq/bisq.module.ts | 2 +
.../mining-start/mining-start.component.html | 1 -
.../mining-start/mining-start.component.ts | 14 -
frontend/src/app/graphs/graphs.module.ts | 58 +
.../src/app/graphs/graphs.routing.module.ts | 106 ++
frontend/src/app/shared/shared.module.ts | 161 ++-
8 files changed, 773 insertions(+), 791 deletions(-)
delete mode 100644 frontend/src/app/components/mining-start/mining-start.component.html
delete mode 100644 frontend/src/app/components/mining-start/mining-start.component.ts
create mode 100644 frontend/src/app/graphs/graphs.module.ts
create mode 100644 frontend/src/app/graphs/graphs.routing.module.ts
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts
index 2eaf7e277..f3d3e3144 100644
--- a/frontend/src/app/app-routing.module.ts
+++ b/frontend/src/app/app-routing.module.ts
@@ -6,38 +6,206 @@ import { BlockComponent } from './components/block/block.component';
import { AddressComponent } from './components/address/address.component';
import { MasterPageComponent } from './components/master-page/master-page.component';
import { AboutComponent } from './components/about/about.component';
-import { TelevisionComponent } from './components/television/television.component';
-import { StatisticsComponent } from './components/statistics/statistics.component';
-import { MempoolBlockComponent } from './components/mempool-block/mempool-block.component';
-import { AssetComponent } from './components/asset/asset.component';
-import { AssetsNavComponent } from './components/assets/assets-nav/assets-nav.component';
import { StatusViewComponent } from './components/status-view/status-view.component';
-import { DashboardComponent } from './dashboard/dashboard.component';
import { LatestBlocksComponent } from './components/latest-blocks/latest-blocks.component';
import { TermsOfServiceComponent } from './components/terms-of-service/terms-of-service.component';
import { PrivacyPolicyComponent } from './components/privacy-policy/privacy-policy.component';
import { TrademarkPolicyComponent } from './components/trademark-policy/trademark-policy.component';
import { BisqMasterPageComponent } from './components/bisq-master-page/bisq-master-page.component';
import { SponsorComponent } from './components/sponsor/sponsor.component';
-import { LiquidMasterPageComponent } from './components/liquid-master-page/liquid-master-page.component';
import { PushTransactionComponent } from './components/push-transaction/push-transaction.component';
-import { PoolRankingComponent } from './components/pool-ranking/pool-ranking.component';
+import { BlocksList } from './components/blocks-list/blocks-list.component';
+import { LiquidMasterPageComponent } from './components/liquid-master-page/liquid-master-page.component';
import { AssetGroupComponent } from './components/assets/asset-group/asset-group.component';
import { AssetsFeaturedComponent } from './components/assets/assets-featured/assets-featured.component';
import { AssetsComponent } from './components/assets/assets.component';
-import { PoolComponent } from './components/pool/pool.component';
-import { MiningDashboardComponent } from './components/mining-dashboard/mining-dashboard.component';
-import { HashrateChartComponent } from './components/hashrate-chart/hashrate-chart.component';
-import { HashrateChartPoolsComponent } from './components/hashrates-chart-pools/hashrate-chart-pools.component';
-import { MiningStartComponent } from './components/mining-start/mining-start.component';
-import { GraphsComponent } from './components/graphs/graphs.component';
-import { BlocksList } from './components/blocks-list/blocks-list.component';
-import { BlockFeesGraphComponent } from './components/block-fees-graph/block-fees-graph.component';
-import { BlockRewardsGraphComponent } from './components/block-rewards-graph/block-rewards-graph.component';
-import { BlockFeeRatesGraphComponent } from './components/block-fee-rates-graph/block-fee-rates-graph.component';
-import { BlockSizesWeightsGraphComponent } from './components/block-sizes-weights-graph/block-sizes-weights-graph.component';
+import { AssetComponent } from './components/asset/asset.component';
+import { AssetsNavComponent } from './components/assets/assets-nav/assets-nav.component';
let routes: Routes = [
+ {
+ path: 'testnet',
+ children: [
+ {
+ path: '',
+ pathMatch: 'full',
+ loadChildren: () => import('./graphs/graphs.module').then(m => m.GraphsModule)
+ },
+ {
+ path: '',
+ component: MasterPageComponent,
+ children: [
+ {
+ path: 'tx/push',
+ component: PushTransactionComponent,
+ },
+ {
+ path: 'blocks',
+ component: LatestBlocksComponent,
+ },
+ {
+ path: 'about',
+ component: AboutComponent,
+ },
+ {
+ path: 'mining/blocks',
+ component: BlocksList,
+ },
+ {
+ path: 'terms-of-service',
+ component: TermsOfServiceComponent
+ },
+ {
+ path: 'privacy-policy',
+ component: PrivacyPolicyComponent
+ },
+ {
+ path: 'trademark-policy',
+ component: TrademarkPolicyComponent
+ },
+ {
+ path: 'address/:id',
+ children: [],
+ component: AddressComponent
+ },
+ {
+ path: 'tx',
+ component: StartComponent,
+ children: [
+ {
+ path: ':id',
+ component: TransactionComponent
+ },
+ ],
+ },
+ {
+ path: 'block',
+ component: StartComponent,
+ children: [
+ {
+ path: ':id',
+ component: BlockComponent
+ },
+ ],
+ },
+ {
+ path: 'docs',
+ loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ },
+ {
+ path: 'api',
+ loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ },
+ ],
+ },
+ {
+ path: 'status',
+ component: StatusViewComponent
+ },
+ {
+ path: '',
+ loadChildren: () => import('./graphs/graphs.module').then(m => m.GraphsModule)
+ },
+ {
+ path: '**',
+ redirectTo: '/testnet'
+ },
+ ]
+ },
+ {
+ path: 'signet',
+ children: [
+ {
+ path: '',
+ pathMatch: 'full',
+ loadChildren: () => import('./graphs/graphs.module').then(m => m.GraphsModule)
+ },
+ {
+ path: '',
+ component: MasterPageComponent,
+ children: [
+ {
+ path: 'tx/push',
+ component: PushTransactionComponent,
+ },
+ {
+ path: 'blocks',
+ component: LatestBlocksComponent,
+ },
+ {
+ path: 'about',
+ component: AboutComponent,
+ },
+ {
+ path: 'mining/blocks',
+ component: BlocksList,
+ },
+ {
+ path: 'terms-of-service',
+ component: TermsOfServiceComponent
+ },
+ {
+ path: 'privacy-policy',
+ component: PrivacyPolicyComponent
+ },
+ {
+ path: 'trademark-policy',
+ component: TrademarkPolicyComponent
+ },
+ {
+ path: 'address/:id',
+ children: [],
+ component: AddressComponent
+ },
+ {
+ path: 'tx',
+ component: StartComponent,
+ children: [
+ {
+ path: ':id',
+ component: TransactionComponent
+ },
+ ],
+ },
+ {
+ path: 'block',
+ component: StartComponent,
+ children: [
+ {
+ path: ':id',
+ component: BlockComponent
+ },
+ ],
+ },
+ {
+ path: 'docs',
+ loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ },
+ {
+ path: 'api',
+ loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ },
+ ],
+ },
+ {
+ path: 'status',
+ component: StatusViewComponent
+ },
+ {
+ path: '',
+ loadChildren: () => import('./graphs/graphs.module').then(m => m.GraphsModule)
+ },
+ {
+ path: '**',
+ redirectTo: '/signet'
+ },
+ ]
+ },
+ {
+ path: '',
+ pathMatch: 'full',
+ loadChildren: () => import('./graphs/graphs.module').then(m => m.GraphsModule)
+ },
{
path: '',
component: MasterPageComponent,
@@ -46,109 +214,17 @@ let routes: Routes = [
path: 'tx/push',
component: PushTransactionComponent,
},
- {
- path: '',
- component: StartComponent,
- children: [
- {
- path: '',
- component: DashboardComponent,
- },
- {
- path: 'tx/:id',
- component: TransactionComponent
- },
- {
- path: 'block/:id',
- component: BlockComponent
- },
- {
- path: 'mempool-block/:id',
- component: MempoolBlockComponent
- },
- {
- path: 'mining',
- component: MiningDashboardComponent,
- },
- ],
- },
{
path: 'blocks',
component: LatestBlocksComponent,
},
- {
- path: 'mining',
- component: MiningStartComponent,
- children: [
- {
- path: 'blocks',
- component: BlocksList,
- },
- {
- path: 'pool',
- children: [
- {
- path: ':slug',
- component: PoolComponent,
- },
- ]
- },
- ]
- },
- {
- path: 'graphs',
- component: GraphsComponent,
- children: [
- {
- path: '',
- pathMatch: 'full',
- redirectTo: 'mempool',
- },
- {
- path: 'mempool',
- component: StatisticsComponent,
- },
- {
- path: 'mining/hashrate-difficulty',
- component: HashrateChartComponent,
- },
- {
- path: 'mining/pools-dominance',
- component: HashrateChartPoolsComponent,
- },
- {
- path: 'mining/pools',
- component: PoolRankingComponent,
- },
- {
- path: 'mining/block-fees',
- component: BlockFeesGraphComponent,
- },
- {
- path: 'mining/block-rewards',
- component: BlockRewardsGraphComponent,
- },
- {
- path: 'mining/block-fee-rates',
- component: BlockFeeRatesGraphComponent,
- },
- {
- path: 'mining/block-sizes-weights',
- component: BlockSizesWeightsGraphComponent,
- },
- ],
- },
{
path: 'about',
component: AboutComponent,
},
{
- path: 'docs',
- loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
- },
- {
- path: 'api',
- loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ path: 'mining/blocks',
+ component: BlocksList,
},
{
path: 'terms-of-service',
@@ -167,276 +243,36 @@ let routes: Routes = [
children: [],
component: AddressComponent
},
+ {
+ path: 'tx',
+ component: StartComponent,
+ children: [
+ {
+ path: ':id',
+ component: TransactionComponent
+ },
+ ],
+ },
+ {
+ path: 'block',
+ component: StartComponent,
+ children: [
+ {
+ path: ':id',
+ component: BlockComponent
+ },
+ ],
+ },
+ {
+ path: 'docs',
+ loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ },
+ {
+ path: 'api',
+ loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ },
],
},
- {
- path: 'testnet',
- children: [
- {
- path: '',
- component: MasterPageComponent,
- children: [
- {
- path: 'tx/push',
- component: PushTransactionComponent,
- },
- {
- path: '',
- component: StartComponent,
- children: [
- {
- path: '',
- component: DashboardComponent
- },
- {
- path: 'tx/:id',
- component: TransactionComponent
- },
- {
- path: 'block/:id',
- component: BlockComponent
- },
- {
- path: 'mempool-block/:id',
- component: MempoolBlockComponent
- },
- {
- path: 'mining',
- component: MiningDashboardComponent,
- },
- ],
- },
- {
- path: 'blocks',
- component: LatestBlocksComponent,
- },
- {
- path: 'mining',
- component: MiningStartComponent,
- children: [
- {
- path: 'blocks',
- component: BlocksList,
- },
- {
- path: 'pool',
- children: [
- {
- path: ':slug',
- component: PoolComponent,
- },
- ]
- },
- ]
- },
- {
- path: 'graphs',
- component: GraphsComponent,
- children: [
- {
- path: '',
- pathMatch: 'full',
- redirectTo: 'mempool',
- },
- {
- path: 'mempool',
- component: StatisticsComponent,
- },
- {
- path: 'mining/hashrate-difficulty',
- component: HashrateChartComponent,
- },
- {
- path: 'mining/pools-dominance',
- component: HashrateChartPoolsComponent,
- },
- {
- path: 'mining/pools',
- component: PoolRankingComponent,
- },
- {
- path: 'mining/block-fees',
- component: BlockFeesGraphComponent,
- },
- {
- path: 'mining/block-rewards',
- component: BlockRewardsGraphComponent,
- },
- {
- path: 'mining/block-fee-rates',
- component: BlockFeeRatesGraphComponent,
- },
- {
- path: 'mining/block-sizes-weights',
- component: BlockSizesWeightsGraphComponent,
- },
- ]
- },
- {
- path: 'address/:id',
- children: [],
- component: AddressComponent
- },
- {
- path: 'docs',
- loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
- },
- {
- path: 'api',
- loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
- },
- ],
- },
- {
- path: 'tv',
- component: TelevisionComponent
- },
- {
- path: 'status',
- component: StatusViewComponent
- },
- {
- path: '**',
- redirectTo: '/testnet'
- },
- ]
- },
- {
- path: 'signet',
- children: [
- {
- path: '',
- component: MasterPageComponent,
- children: [
- {
- path: 'tx/push',
- component: PushTransactionComponent,
- },
- {
- path: '',
- component: StartComponent,
- children: [
- {
- path: '',
- component: DashboardComponent
- },
- {
- path: 'tx/:id',
- component: TransactionComponent
- },
- {
- path: 'block/:id',
- component: BlockComponent
- },
- {
- path: 'mempool-block/:id',
- component: MempoolBlockComponent
- },
- {
- path: 'mining',
- component: MiningDashboardComponent,
- },
- ],
- },
- {
- path: 'blocks',
- component: LatestBlocksComponent,
- },
- {
- path: 'mining',
- component: MiningStartComponent,
- children: [
- {
- path: 'blocks',
- component: BlocksList,
- },
- {
- path: 'pool',
- children: [
- {
- path: ':slug',
- component: PoolComponent,
- },
- ]
- },
- ]
- },
- {
- path: 'graphs',
- component: GraphsComponent,
- children: [
- {
- path: '',
- pathMatch: 'full',
- redirectTo: 'mempool',
- },
- {
- path: 'mempool',
- component: StatisticsComponent,
- },
- {
- path: 'mining/hashrate-difficulty',
- component: HashrateChartComponent,
- },
- {
- path: 'mining/pools-dominance',
- component: HashrateChartPoolsComponent,
- },
- {
- path: 'mining/pools',
- component: PoolRankingComponent,
- },
- {
- path: 'mining/block-fees',
- component: BlockFeesGraphComponent,
- },
- {
- path: 'mining/block-rewards',
- component: BlockRewardsGraphComponent,
- },
- {
- path: 'mining/block-fee-rates',
- component: BlockFeeRatesGraphComponent,
- },
- {
- path: 'mining/block-sizes-weights',
- component: BlockSizesWeightsGraphComponent,
- },
- ]
- },
- {
- path: 'address/:id',
- children: [],
- component: AddressComponent
- },
- {
- path: 'docs',
- loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
- },
- {
- path: 'api',
- loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
- },
- ],
- },
- {
- path: 'tv',
- component: TelevisionComponent
- },
- {
- path: 'status',
- component: StatusViewComponent
- },
- {
- path: '**',
- redirectTo: '/signet'
- },
- ]
- },
- {
- path: 'tv',
- component: TelevisionComponent,
- },
{
path: 'status',
component: StatusViewComponent
@@ -445,6 +281,10 @@ let routes: Routes = [
path: 'sponsor',
component: SponsorComponent,
},
+ {
+ path: '',
+ loadChildren: () => import('./graphs/graphs.module').then(m => m.GraphsModule)
+ },
{
path: '**',
redirectTo: ''
@@ -464,237 +304,233 @@ if (browserWindowEnv && browserWindowEnv.BASE_MODULE === 'bisq') {
}
if (browserWindowEnv && browserWindowEnv.BASE_MODULE === 'liquid') {
- routes = [{
- path: '',
- component: LiquidMasterPageComponent,
- children: [
- {
- path: '',
- component: StartComponent,
- children: [
- {
- path: '',
- component: DashboardComponent
- },
- {
- path: 'tx/push',
- component: PushTransactionComponent,
- },
- {
- path: 'tx/:id',
- component: TransactionComponent
- },
- {
- path: 'block/:id',
- component: BlockComponent
- },
- {
- path: 'mempool-block/:id',
- component: MempoolBlockComponent
- },
- ],
- },
- {
- path: 'blocks',
- component: LatestBlocksComponent,
- },
- {
- path: 'graphs',
- component: GraphsComponent,
- children: [
- {
- path: '',
- pathMatch: 'full',
- redirectTo: 'mempool',
- },
- {
- path: 'mempool',
- component: StatisticsComponent,
- }
- ]
- },
- {
- path: 'address/:id',
- component: AddressComponent
- },
- {
- path: 'assets',
- component: AssetsNavComponent,
- children: [
- {
- path: 'featured',
- component: AssetsFeaturedComponent,
- },
- {
- path: 'all',
- component: AssetsComponent,
- },
- {
- path: 'asset/:id',
- component: AssetComponent
- },
- {
- path: 'group/:id',
- component: AssetGroupComponent
- },
- {
- path: '**',
- redirectTo: 'featured'
- }
- ]
- },
- {
- path: 'docs',
- loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
- },
- {
- path: 'api',
- loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
- },
- {
- path: 'about',
- component: AboutComponent,
- },
- {
- path: 'terms-of-service',
- component: TermsOfServiceComponent
- },
- {
- path: 'privacy-policy',
- component: PrivacyPolicyComponent
- },
- {
- path: 'trademark-policy',
- component: TrademarkPolicyComponent
- },
- ],
- },
- {
- path: 'testnet',
- children: [
- {
- path: '',
- component: LiquidMasterPageComponent,
- children: [
- {
- path: '',
- component: StartComponent,
+ routes = [
+ {
+ path: 'testnet',
+ children: [
+ {
+ path: '',
+ pathMatch: 'full',
+ loadChildren: () => import('./graphs/graphs.module').then(m => m.GraphsModule)
+ },
+ {
+ path: '',
+ component: LiquidMasterPageComponent,
+ children: [
+ {
+ path: 'tx/push',
+ component: PushTransactionComponent,
+ },
+ {
+ path: 'blocks',
+ component: LatestBlocksComponent,
+ },
+ {
+ path: 'about',
+ component: AboutComponent,
+ },
+ {
+ path: 'mining/blocks',
+ component: BlocksList,
+ },
+ {
+ path: 'terms-of-service',
+ component: TermsOfServiceComponent
+ },
+ {
+ path: 'privacy-policy',
+ component: PrivacyPolicyComponent
+ },
+ {
+ path: 'trademark-policy',
+ component: TrademarkPolicyComponent
+ },
+ {
+ path: 'address/:id',
+ children: [],
+ component: AddressComponent
+ },
+ {
+ path: 'tx',
+ component: StartComponent,
+ children: [
+ {
+ path: ':id',
+ component: TransactionComponent
+ },
+ ],
+ },
+ {
+ path: 'block',
+ component: StartComponent,
+ children: [
+ {
+ path: ':id',
+ component: BlockComponent
+ },
+ ],
+ },
+ {
+ path: 'assets',
+ component: AssetsNavComponent,
+ children: [
+ {
+ path: 'all',
+ component: AssetsComponent,
+ },
+ {
+ path: 'asset/:id',
+ component: AssetComponent
+ },
+ {
+ path: 'group/:id',
+ component: AssetGroupComponent
+ },
+ {
+ path: '**',
+ redirectTo: 'all'
+ }
+ ]
+ },
+ {
+ path: 'docs',
+ loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ },
+ {
+ path: 'api',
+ loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ },
+ ],
+ },
+ {
+ path: 'status',
+ component: StatusViewComponent
+ },
+ {
+ path: '',
+ loadChildren: () => import('./graphs/graphs.module').then(m => m.GraphsModule)
+ },
+ {
+ path: '**',
+ redirectTo: '/signet'
+ },
+ ]
+ },
+ {
+ path: '',
+ pathMatch: 'full',
+ loadChildren: () => import('./graphs/graphs.module').then(m => m.GraphsModule)
+ },
+ {
+ path: '',
+ component: LiquidMasterPageComponent,
+ children: [
+ {
+ path: 'tx/push',
+ component: PushTransactionComponent,
+ },
+ {
+ path: 'blocks',
+ component: LatestBlocksComponent,
+ },
+ {
+ path: 'about',
+ component: AboutComponent,
+ },
+ {
+ path: 'mining/blocks',
+ component: BlocksList,
+ },
+ {
+ path: 'terms-of-service',
+ component: TermsOfServiceComponent
+ },
+ {
+ path: 'privacy-policy',
+ component: PrivacyPolicyComponent
+ },
+ {
+ path: 'trademark-policy',
+ component: TrademarkPolicyComponent
+ },
+ {
+ path: 'address/:id',
+ children: [],
+ component: AddressComponent
+ },
+ {
+ path: 'tx',
+ component: StartComponent,
+ children: [
+ {
+ path: ':id',
+ component: TransactionComponent
+ },
+ ],
+ },
+ {
+ path: 'block',
+ component: StartComponent,
children: [
- {
- path: '',
- component: DashboardComponent
- },
- {
- path: 'tx/push',
- component: PushTransactionComponent,
- },
- {
- path: 'tx/:id',
- component: TransactionComponent
- },
- {
- path: 'block/:id',
- component: BlockComponent
- },
- {
- path: 'mempool-block/:id',
- component: MempoolBlockComponent
- },
- ],
- },
- {
- path: 'blocks',
- component: LatestBlocksComponent,
- },
- {
- path: 'graphs',
- component: GraphsComponent,
- children: [
- {
- path: '',
- pathMatch: 'full',
- redirectTo: 'mempool',
- },
- {
- path: 'mempool',
- component: StatisticsComponent,
- }
- ]
- },
- {
- path: 'address/:id',
- component: AddressComponent
- },
- {
- path: 'assets',
- component: AssetsNavComponent,
- children: [
- {
- path: 'all',
- component: AssetsComponent,
- },
- {
- path: 'asset/:id',
- component: AssetComponent
- },
- {
- path: 'group/:id',
- component: AssetGroupComponent
- },
- {
- path: '**',
- redirectTo: 'all'
- }
- ]
- },
- {
- path: 'docs',
- loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
- },
- {
- path: 'api',
- loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
- },
- {
- path: 'about',
- component: AboutComponent,
- },
- {
- path: 'terms-of-service',
- component: TermsOfServiceComponent
- },
- {
- path: 'privacy-policy',
- component: PrivacyPolicyComponent
- },
- {
- path: 'trademark-policy',
- component: TrademarkPolicyComponent
- },
- ],
- },
- {
- path: 'tv',
- component: TelevisionComponent
- },
- {
- path: 'status',
- component: StatusViewComponent
- },
- ]
- },
- {
- path: 'tv',
- component: TelevisionComponent
- },
- {
- path: 'status',
- component: StatusViewComponent
- },
- {
- path: '**',
- redirectTo: '/testnet'
- }];
+ {
+ path: ':id',
+ component: BlockComponent
+ },
+ ],
+ },
+ {
+ path: 'assets',
+ component: AssetsNavComponent,
+ children: [
+ {
+ path: 'featured',
+ component: AssetsFeaturedComponent,
+ },
+ {
+ path: 'all',
+ component: AssetsComponent,
+ },
+ {
+ path: 'asset/:id',
+ component: AssetComponent
+ },
+ {
+ path: 'group/:id',
+ component: AssetGroupComponent
+ },
+ {
+ path: '**',
+ redirectTo: 'all'
+ }
+ ]
+ },
+ {
+ path: 'docs',
+ loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ },
+ {
+ path: 'api',
+ loadChildren: () => import('./docs/docs.module').then(m => m.DocsModule)
+ },
+ ],
+ },
+ {
+ path: 'status',
+ component: StatusViewComponent
+ },
+ {
+ path: 'sponsor',
+ component: SponsorComponent,
+ },
+ {
+ path: '',
+ loadChildren: () => import('./graphs/graphs.module').then(m => m.GraphsModule)
+ },
+ {
+ path: '**',
+ redirectTo: ''
+ },
+ ];
}
@NgModule({
diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts
index 4b4e9eba9..8845f4255 100644
--- a/frontend/src/app/app.module.ts
+++ b/frontend/src/app/app.module.ts
@@ -2,141 +2,23 @@ import { BrowserModule, BrowserTransferStateModule } from '@angular/platform-bro
import { NgModule } from '@angular/core';
import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
-import { InfiniteScrollModule } from 'ngx-infinite-scroll';
-import { NgxEchartsModule } from 'ngx-echarts';
-
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './components/app/app.component';
-
-import { StartComponent } from './components/start/start.component';
import { ElectrsApiService } from './services/electrs-api.service';
-import { TransactionComponent } from './components/transaction/transaction.component';
-import { TransactionsListComponent } from './components/transactions-list/transactions-list.component';
import { StateService } from './services/state.service';
-import { BlockComponent } from './components/block/block.component';
-import { AddressComponent } from './components/address/address.component';
-import { SearchFormComponent } from './components/search-form/search-form.component';
-import { LatestBlocksComponent } from './components/latest-blocks/latest-blocks.component';
import { WebsocketService } from './services/websocket.service';
-import { AddressLabelsComponent } from './components/address-labels/address-labels.component';
-import { MasterPageComponent } from './components/master-page/master-page.component';
-import { BisqMasterPageComponent } from './components/bisq-master-page/bisq-master-page.component';
-import { LiquidMasterPageComponent } from './components/liquid-master-page/liquid-master-page.component';
-import { AboutComponent } from './components/about/about.component';
-import { TelevisionComponent } from './components/television/television.component';
-import { StatisticsComponent } from './components/statistics/statistics.component';
-import { FooterComponent } from './components/footer/footer.component';
import { AudioService } from './services/audio.service';
-import { MempoolBlockComponent } from './components/mempool-block/mempool-block.component';
-import { FeeDistributionGraphComponent } from './components/fee-distribution-graph/fee-distribution-graph.component';
-import { IncomingTransactionsGraphComponent } from './components/incoming-transactions-graph/incoming-transactions-graph.component';
-import { TimeSpanComponent } from './components/time-span/time-span.component';
import { SeoService } from './services/seo.service';
-import { MempoolGraphComponent } from './components/mempool-graph/mempool-graph.component';
-import { PoolRankingComponent } from './components/pool-ranking/pool-ranking.component';
-import { PoolComponent } from './components/pool/pool.component';
-import { LbtcPegsGraphComponent } from './components/lbtc-pegs-graph/lbtc-pegs-graph.component';
-import { AssetComponent } from './components/asset/asset.component';
-import { AssetsComponent } from './components/assets/assets.component';
-import { AssetsNavComponent } from './components/assets/assets-nav/assets-nav.component';
-import { StatusViewComponent } from './components/status-view/status-view.component';
import { SharedModule } from './shared/shared.module';
-import { NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap';
-import { FeesBoxComponent } from './components/fees-box/fees-box.component';
-import { DashboardComponent } from './dashboard/dashboard.component';
-import { DifficultyComponent } from './components/difficulty/difficulty.component';
-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,
- faFileAlt, faRedoAlt, faArrowAltCircleRight, faExternalLinkAlt, faBook, faListUl, faDownload } from '@fortawesome/free-solid-svg-icons';
-import { TermsOfServiceComponent } from './components/terms-of-service/terms-of-service.component';
-import { PrivacyPolicyComponent } from './components/privacy-policy/privacy-policy.component';
-import { TrademarkPolicyComponent } from './components/trademark-policy/trademark-policy.component';
import { StorageService } from './services/storage.service';
import { HttpCacheInterceptor } from './services/http-cache.interceptor';
import { LanguageService } from './services/language.service';
-import { SponsorComponent } from './components/sponsor/sponsor.component';
-import { PushTransactionComponent } from './components/push-transaction/push-transaction.component';
-import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
-import { AssetsFeaturedComponent } from './components/assets/assets-featured/assets-featured.component';
-import { AssetGroupComponent } from './components/assets/asset-group/asset-group.component';
-import { AssetCirculationComponent } from './components/asset-circulation/asset-circulation.component';
-import { MiningDashboardComponent } from './components/mining-dashboard/mining-dashboard.component';
-import { HashrateChartComponent } from './components/hashrate-chart/hashrate-chart.component';
-import { HashrateChartPoolsComponent } from './components/hashrates-chart-pools/hashrate-chart-pools.component';
-import { MiningStartComponent } from './components/mining-start/mining-start.component';
-import { AmountShortenerPipe } from './shared/pipes/amount-shortener.pipe';
import { ShortenStringPipe } from './shared/pipes/shorten-string-pipe/shorten-string.pipe';
import { CapAddressPipe } from './shared/pipes/cap-address-pipe/cap-address-pipe';
-import { GraphsComponent } from './components/graphs/graphs.component';
-import { DifficultyAdjustmentsTable } from './components/difficulty-adjustments-table/difficulty-adjustments-table.components';
-import { BlocksList } from './components/blocks-list/blocks-list.component';
-import { RewardStatsComponent } from './components/reward-stats/reward-stats.component';
-import { DataCyDirective } from './data-cy.directive';
-import { BlockFeesGraphComponent } from './components/block-fees-graph/block-fees-graph.component';
-import { BlockRewardsGraphComponent } from './components/block-rewards-graph/block-rewards-graph.component';
-import { BlockFeeRatesGraphComponent } from './components/block-fee-rates-graph/block-fee-rates-graph.component';
-import { LoadingIndicatorComponent } from './components/loading-indicator/loading-indicator.component';
-import { IndexingProgressComponent } from './components/indexing-progress/indexing-progress.component';
-import { BlockSizesWeightsGraphComponent } from './components/block-sizes-weights-graph/block-sizes-weights-graph.component';
@NgModule({
declarations: [
AppComponent,
- AboutComponent,
- MasterPageComponent,
- BisqMasterPageComponent,
- LiquidMasterPageComponent,
- TelevisionComponent,
- StartComponent,
- StatisticsComponent,
- TransactionComponent,
- BlockComponent,
- TransactionsListComponent,
- AddressComponent,
- LatestBlocksComponent,
- SearchFormComponent,
- TimeSpanComponent,
- AddressLabelsComponent,
- FooterComponent,
- MempoolBlockComponent,
- FeeDistributionGraphComponent,
- IncomingTransactionsGraphComponent,
- MempoolGraphComponent,
- PoolRankingComponent,
- PoolComponent,
- LbtcPegsGraphComponent,
- AssetComponent,
- AssetsComponent,
- StatusViewComponent,
- FeesBoxComponent,
- DashboardComponent,
- DifficultyComponent,
- TermsOfServiceComponent,
- PrivacyPolicyComponent,
- TrademarkPolicyComponent,
- SponsorComponent,
- PushTransactionComponent,
- AssetsNavComponent,
- AssetsFeaturedComponent,
- AssetGroupComponent,
- AssetCirculationComponent,
- MiningDashboardComponent,
- HashrateChartComponent,
- HashrateChartPoolsComponent,
- MiningStartComponent,
- AmountShortenerPipe,
- GraphsComponent,
- DifficultyAdjustmentsTable,
- BlocksList,
- DataCyDirective,
- RewardStatsComponent,
- BlockFeesGraphComponent,
- BlockRewardsGraphComponent,
- BlockFeeRatesGraphComponent,
- LoadingIndicatorComponent,
- IndexingProgressComponent,
- BlockSizesWeightsGraphComponent
],
imports: [
BrowserModule.withServerTransition({ appId: 'serverApp' }),
@@ -144,14 +26,7 @@ import { BlockSizesWeightsGraphComponent } from './components/block-sizes-weight
AppRoutingModule,
HttpClientModule,
BrowserAnimationsModule,
- InfiniteScrollModule,
- NgbTypeaheadModule,
- NgbModule,
- FontAwesomeModule,
SharedModule,
- NgxEchartsModule.forRoot({
- echarts: () => import('echarts')
- })
],
providers: [
ElectrsApiService,
@@ -167,41 +42,4 @@ import { BlockSizesWeightsGraphComponent } from './components/block-sizes-weight
],
bootstrap: [AppComponent]
})
-export class AppModule {
- constructor(library: FaIconLibrary) {
- library.addIcons(faInfoCircle);
- library.addIcons(faChartArea);
- library.addIcons(faTv);
- library.addIcons(faTachometerAlt);
- library.addIcons(faCubes);
- library.addIcons(faHammer);
- library.addIcons(faCogs);
- library.addIcons(faThList);
- library.addIcons(faList);
- library.addIcons(faTachometerAlt);
- library.addIcons(faDatabase);
- library.addIcons(faSearch);
- library.addIcons(faLink);
- library.addIcons(faBolt);
- library.addIcons(faTint);
- library.addIcons(faFilter);
- library.addIcons(faAngleDown);
- library.addIcons(faAngleUp);
- library.addIcons(faExchangeAlt);
- library.addIcons(faAngleDoubleUp);
- library.addIcons(faAngleDoubleDown);
- library.addIcons(faChevronDown);
- library.addIcons(faFileAlt);
- library.addIcons(faRedoAlt);
- library.addIcons(faArrowAltCircleRight);
- library.addIcons(faExternalLinkAlt);
- library.addIcons(faSortUp);
- library.addIcons(faCaretUp);
- library.addIcons(faCaretDown);
- library.addIcons(faAngleRight);
- library.addIcons(faAngleLeft);
- library.addIcons(faBook);
- library.addIcons(faListUl);
- library.addIcons(faDownload);
- }
-}
+export class AppModule { }
diff --git a/frontend/src/app/bisq/bisq.module.ts b/frontend/src/app/bisq/bisq.module.ts
index 77b0a26e8..34c09f971 100644
--- a/frontend/src/app/bisq/bisq.module.ts
+++ b/frontend/src/app/bisq/bisq.module.ts
@@ -24,6 +24,7 @@ import { BisqAddressComponent } from './bisq-address/bisq-address.component';
import { BisqStatsComponent } from './bisq-stats/bisq-stats.component';
import { BsqAmountComponent } from './bsq-amount/bsq-amount.component';
import { BisqTradesComponent } from './bisq-trades/bisq-trades.component';
+import { CommonModule } from '@angular/common';
@NgModule({
declarations: [
@@ -46,6 +47,7 @@ import { BisqTradesComponent } from './bisq-trades/bisq-trades.component';
BisqMainDashboardComponent,
],
imports: [
+ CommonModule,
BisqRoutingModule,
SharedModule,
NgbPaginationModule,
diff --git a/frontend/src/app/components/mining-start/mining-start.component.html b/frontend/src/app/components/mining-start/mining-start.component.html
deleted file mode 100644
index 0680b43f9..000000000
--- a/frontend/src/app/components/mining-start/mining-start.component.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/frontend/src/app/components/mining-start/mining-start.component.ts b/frontend/src/app/components/mining-start/mining-start.component.ts
deleted file mode 100644
index 6850cfa54..000000000
--- a/frontend/src/app/components/mining-start/mining-start.component.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-
-@Component({
- selector: 'app-mining-start',
- templateUrl: './mining-start.component.html',
-})
-export class MiningStartComponent implements OnInit {
-
- constructor() { }
-
- ngOnInit(): void {
- }
-
-}
diff --git a/frontend/src/app/graphs/graphs.module.ts b/frontend/src/app/graphs/graphs.module.ts
new file mode 100644
index 000000000..a080f6df0
--- /dev/null
+++ b/frontend/src/app/graphs/graphs.module.ts
@@ -0,0 +1,58 @@
+import { NgModule } from '@angular/core';
+import { NgxEchartsModule } from 'ngx-echarts';
+import { GraphsRoutingModule } from './graphs.routing.module';
+import { SharedModule } from '../shared/shared.module';
+
+import { BlockFeesGraphComponent } from '../components/block-fees-graph/block-fees-graph.component';
+import { BlockRewardsGraphComponent } from '../components/block-rewards-graph/block-rewards-graph.component';
+import { BlockFeeRatesGraphComponent } from '../components/block-fee-rates-graph/block-fee-rates-graph.component';
+import { BlockSizesWeightsGraphComponent } from '../components/block-sizes-weights-graph/block-sizes-weights-graph.component';
+import { FeeDistributionGraphComponent } from '../components/fee-distribution-graph/fee-distribution-graph.component';
+import { IncomingTransactionsGraphComponent } from '../components/incoming-transactions-graph/incoming-transactions-graph.component';
+import { MempoolGraphComponent } from '../components/mempool-graph/mempool-graph.component';
+import { LbtcPegsGraphComponent } from '../components/lbtc-pegs-graph/lbtc-pegs-graph.component';
+import { GraphsComponent } from '../components/graphs/graphs.component';
+import { StatisticsComponent } from '../components/statistics/statistics.component';
+import { MempoolBlockComponent } from '../components/mempool-block/mempool-block.component';
+import { PoolRankingComponent } from '../components/pool-ranking/pool-ranking.component';
+import { PoolComponent } from '../components/pool/pool.component';
+import { TelevisionComponent } from '../components/television/television.component';
+import { DashboardComponent } from '../dashboard/dashboard.component';
+import { MiningDashboardComponent } from '../components/mining-dashboard/mining-dashboard.component';
+import { HashrateChartComponent } from '../components/hashrate-chart/hashrate-chart.component';
+import { HashrateChartPoolsComponent } from '../components/hashrates-chart-pools/hashrate-chart-pools.component';
+import { CommonModule } from '@angular/common';
+
+@NgModule({
+ declarations: [
+ DashboardComponent,
+ MempoolBlockComponent,
+
+ MiningDashboardComponent,
+ PoolComponent,
+ PoolRankingComponent,
+ TelevisionComponent,
+
+ StatisticsComponent,
+ GraphsComponent,
+ BlockFeesGraphComponent,
+ BlockRewardsGraphComponent,
+ BlockFeeRatesGraphComponent,
+ BlockSizesWeightsGraphComponent,
+ FeeDistributionGraphComponent,
+ IncomingTransactionsGraphComponent,
+ MempoolGraphComponent,
+ LbtcPegsGraphComponent,
+ HashrateChartComponent,
+ HashrateChartPoolsComponent,
+ ],
+ imports: [
+ CommonModule,
+ SharedModule,
+ GraphsRoutingModule,
+ NgxEchartsModule.forRoot({
+ echarts: () => import('echarts')
+ })
+ ]
+})
+export class GraphsModule { }
diff --git a/frontend/src/app/graphs/graphs.routing.module.ts b/frontend/src/app/graphs/graphs.routing.module.ts
new file mode 100644
index 000000000..c8546e876
--- /dev/null
+++ b/frontend/src/app/graphs/graphs.routing.module.ts
@@ -0,0 +1,106 @@
+import { NgModule } from '@angular/core';
+import { RouterModule, Routes } from '@angular/router';
+import { BlockFeeRatesGraphComponent } from '../components/block-fee-rates-graph/block-fee-rates-graph.component';
+import { BlockFeesGraphComponent } from '../components/block-fees-graph/block-fees-graph.component';
+import { BlockRewardsGraphComponent } from '../components/block-rewards-graph/block-rewards-graph.component';
+import { BlockSizesWeightsGraphComponent } from '../components/block-sizes-weights-graph/block-sizes-weights-graph.component';
+import { GraphsComponent } from '../components/graphs/graphs.component';
+import { HashrateChartComponent } from '../components/hashrate-chart/hashrate-chart.component';
+import { HashrateChartPoolsComponent } from '../components/hashrates-chart-pools/hashrate-chart-pools.component';
+import { MasterPageComponent } from '../components/master-page/master-page.component';
+import { MempoolBlockComponent } from '../components/mempool-block/mempool-block.component';
+import { MiningDashboardComponent } from '../components/mining-dashboard/mining-dashboard.component';
+import { PoolRankingComponent } from '../components/pool-ranking/pool-ranking.component';
+import { PoolComponent } from '../components/pool/pool.component';
+import { StartComponent } from '../components/start/start.component';
+import { StatisticsComponent } from '../components/statistics/statistics.component';
+import { TelevisionComponent } from '../components/television/television.component';
+import { DashboardComponent } from '../dashboard/dashboard.component';
+
+const routes: Routes = [
+ {
+ path: '',
+ component: MasterPageComponent,
+ children: [
+ {
+ path: 'mining/pool/:slug',
+ component: PoolComponent,
+ },
+ {
+ path: 'mining',
+ component: StartComponent,
+ children: [
+ {
+ path: '',
+ component: MiningDashboardComponent,
+ },
+ ]
+ },
+ {
+ path: 'mempool-block/:id',
+ component: StartComponent,
+ children: [
+ {
+ path: '',
+ component: MempoolBlockComponent,
+ },
+ ]
+ },
+ {
+ path: 'graphs',
+ component: GraphsComponent,
+ children: [
+ {
+ path: 'mempool',
+ component: StatisticsComponent,
+ },
+ {
+ path: 'mining/hashrate-difficulty',
+ component: HashrateChartComponent,
+ },
+ {
+ path: 'mining/pools-dominance',
+ component: HashrateChartPoolsComponent,
+ },
+ {
+ path: 'mining/pools',
+ component: PoolRankingComponent,
+ },
+ {
+ path: 'mining/block-fees',
+ component: BlockFeesGraphComponent,
+ },
+ {
+ path: 'mining/block-rewards',
+ component: BlockRewardsGraphComponent,
+ },
+ {
+ path: 'mining/block-fee-rates',
+ component: BlockFeeRatesGraphComponent,
+ },
+ {
+ path: 'mining/block-sizes-weights',
+ component: BlockSizesWeightsGraphComponent,
+ },
+ ]
+ },
+ {
+ path: '',
+ component: StartComponent,
+ children: [{
+ path: '',
+ component: DashboardComponent,
+ }]
+ },
+ ]
+ },
+ {
+ path: 'tv',
+ component: TelevisionComponent
+ },
+];
+
+@NgModule({
+ imports: [RouterModule.forChild(routes)],
+})
+export class GraphsRoutingModule { }
diff --git a/frontend/src/app/shared/shared.module.ts b/frontend/src/app/shared/shared.module.ts
index 8d57630c3..488131d84 100644
--- a/frontend/src/app/shared/shared.module.ts
+++ b/frontend/src/app/shared/shared.module.ts
@@ -1,5 +1,16 @@
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 { 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,
+ faFileAlt, faRedoAlt, faArrowAltCircleRight, faExternalLinkAlt, faBook, faListUl, faDownload } from '@fortawesome/free-solid-svg-icons';
+import { InfiniteScrollModule } from 'ngx-infinite-scroll';
+import { MasterPageComponent } from '../components/master-page/master-page.component';
+import { BisqMasterPageComponent } from '../components/bisq-master-page/bisq-master-page.component';
+import { LiquidMasterPageComponent } from '../components/liquid-master-page/liquid-master-page.component';
+import { AboutComponent } from '../components/about/about.component';
import { VbytesPipe } from './pipes/bytes-pipe/vbytes.pipe';
import { ShortenStringPipe } from './pipes/shorten-string-pipe/shorten-string.pipe';
import { CeilPipe } from './pipes/math-ceil/math-ceil.pipe';
@@ -31,6 +42,38 @@ import { AmountComponent } from '../components/amount/amount.component';
import { RouterModule } from '@angular/router';
import { CapAddressPipe } from './pipes/cap-address-pipe/cap-address-pipe';
+import { StartComponent } from '../components/start/start.component';
+import { TransactionComponent } from '../components/transaction/transaction.component';
+import { TransactionsListComponent } from '../components/transactions-list/transactions-list.component';
+import { BlockComponent } from '../components/block/block.component';
+import { AddressComponent } from '../components/address/address.component';
+import { SearchFormComponent } from '../components/search-form/search-form.component';
+import { LatestBlocksComponent } from '../components/latest-blocks/latest-blocks.component';
+import { AddressLabelsComponent } from '../components/address-labels/address-labels.component';
+import { FooterComponent } from '../components/footer/footer.component';
+import { TimeSpanComponent } from '../components/time-span/time-span.component';
+import { AssetComponent } from '../components/asset/asset.component';
+import { AssetsComponent } from '../components/assets/assets.component';
+import { AssetsNavComponent } from '../components/assets/assets-nav/assets-nav.component';
+import { StatusViewComponent } from '../components/status-view/status-view.component';
+import { FeesBoxComponent } from '../components/fees-box/fees-box.component';
+import { DifficultyComponent } from '../components/difficulty/difficulty.component';
+import { TermsOfServiceComponent } from '../components/terms-of-service/terms-of-service.component';
+import { PrivacyPolicyComponent } from '../components/privacy-policy/privacy-policy.component';
+import { TrademarkPolicyComponent } from '../components/trademark-policy/trademark-policy.component';
+import { SponsorComponent } from '../components/sponsor/sponsor.component';
+import { PushTransactionComponent } from '../components/push-transaction/push-transaction.component';
+import { AssetsFeaturedComponent } from '../components/assets/assets-featured/assets-featured.component';
+import { AssetGroupComponent } from '../components/assets/asset-group/asset-group.component';
+import { AssetCirculationComponent } from '../components/asset-circulation/asset-circulation.component';
+import { AmountShortenerPipe } from '../shared/pipes/amount-shortener.pipe';
+import { DifficultyAdjustmentsTable } from '../components/difficulty-adjustments-table/difficulty-adjustments-table.components';
+import { BlocksList } from '../components/blocks-list/blocks-list.component';
+import { RewardStatsComponent } from '../components/reward-stats/reward-stats.component';
+import { DataCyDirective } from '../data-cy.directive';
+import { LoadingIndicatorComponent } from '../components/loading-indicator/loading-indicator.component';
+import { IndexingProgressComponent } from '../components/indexing-progress/indexing-progress.component';
+
@NgModule({
declarations: [
ClipboardComponent,
@@ -60,6 +103,42 @@ import { CapAddressPipe } from './pipes/cap-address-pipe/cap-address-pipe';
MempoolBlocksComponent,
BlockchainBlocksComponent,
AmountComponent,
+
+ AboutComponent,
+ MasterPageComponent,
+ BisqMasterPageComponent,
+ LiquidMasterPageComponent,
+ StartComponent,
+ TransactionComponent,
+ BlockComponent,
+ TransactionsListComponent,
+ AddressComponent,
+ LatestBlocksComponent,
+ SearchFormComponent,
+ TimeSpanComponent,
+ AddressLabelsComponent,
+ FooterComponent,
+ AssetComponent,
+ AssetsComponent,
+ StatusViewComponent,
+ FeesBoxComponent,
+ DifficultyComponent,
+ TermsOfServiceComponent,
+ PrivacyPolicyComponent,
+ TrademarkPolicyComponent,
+ SponsorComponent,
+ PushTransactionComponent,
+ AssetsNavComponent,
+ AssetsFeaturedComponent,
+ AssetGroupComponent,
+ AssetCirculationComponent,
+ AmountShortenerPipe,
+ DifficultyAdjustmentsTable,
+ BlocksList,
+ DataCyDirective,
+ RewardStatsComponent,
+ LoadingIndicatorComponent,
+ IndexingProgressComponent,
],
imports: [
CommonModule,
@@ -71,17 +150,26 @@ import { CapAddressPipe } from './pipes/cap-address-pipe/cap-address-pipe';
NgbPaginationModule,
NgbDropdownModule,
NgbAccordionModule,
+ InfiniteScrollModule,
+ NgbTypeaheadModule,
+ NgbModule,
+ FontAwesomeModule,
],
providers: [
VbytesPipe,
RelativeUrlPipe,
NoSanitizePipe,
+ ShortenStringPipe,
+ CapAddressPipe,
],
exports: [
RouterModule,
+ InfiniteScrollModule,
+ NgbTypeaheadModule,
+ NgbModule,
+ FontAwesomeModule,
NgbAccordionModule,
NgbNavModule,
- CommonModule,
ReactiveFormsModule,
NgbTooltipModule,
NgbButtonsModule,
@@ -114,6 +202,75 @@ import { CapAddressPipe } from './pipes/cap-address-pipe/cap-address-pipe';
MempoolBlocksComponent,
BlockchainBlocksComponent,
AmountComponent,
+
+ StartComponent,
+ TransactionComponent,
+ BlockComponent,
+ TransactionsListComponent,
+ AddressComponent,
+ LatestBlocksComponent,
+ SearchFormComponent,
+ TimeSpanComponent,
+ AddressLabelsComponent,
+ FooterComponent,
+ AssetComponent,
+ AssetsComponent,
+ StatusViewComponent,
+ FeesBoxComponent,
+ DifficultyComponent,
+ TermsOfServiceComponent,
+ PrivacyPolicyComponent,
+ TrademarkPolicyComponent,
+ SponsorComponent,
+ PushTransactionComponent,
+ AssetsNavComponent,
+ AssetsFeaturedComponent,
+ AssetGroupComponent,
+ AssetCirculationComponent,
+ AmountShortenerPipe,
+ DifficultyAdjustmentsTable,
+ BlocksList,
+ DataCyDirective,
+ RewardStatsComponent,
+ LoadingIndicatorComponent,
+ IndexingProgressComponent,
]
})
-export class SharedModule {}
+export class SharedModule {
+ constructor(library: FaIconLibrary) {
+ library.addIcons(faInfoCircle);
+ library.addIcons(faChartArea);
+ library.addIcons(faTv);
+ library.addIcons(faTachometerAlt);
+ library.addIcons(faCubes);
+ library.addIcons(faHammer);
+ library.addIcons(faCogs);
+ library.addIcons(faThList);
+ library.addIcons(faList);
+ library.addIcons(faTachometerAlt);
+ library.addIcons(faDatabase);
+ library.addIcons(faSearch);
+ library.addIcons(faLink);
+ library.addIcons(faBolt);
+ library.addIcons(faTint);
+ library.addIcons(faFilter);
+ library.addIcons(faAngleDown);
+ library.addIcons(faAngleUp);
+ library.addIcons(faExchangeAlt);
+ library.addIcons(faAngleDoubleUp);
+ library.addIcons(faAngleDoubleDown);
+ library.addIcons(faChevronDown);
+ library.addIcons(faFileAlt);
+ library.addIcons(faRedoAlt);
+ library.addIcons(faArrowAltCircleRight);
+ library.addIcons(faExternalLinkAlt);
+ library.addIcons(faSortUp);
+ library.addIcons(faCaretUp);
+ library.addIcons(faCaretDown);
+ library.addIcons(faAngleRight);
+ library.addIcons(faAngleLeft);
+ library.addIcons(faBook);
+ library.addIcons(faListUl);
+ library.addIcons(faDownload);
+ }
+}
From dfc19d11f323f6668646197fad4b8272fef5ddd2 Mon Sep 17 00:00:00 2001
From: nymkappa
Date: Fri, 20 May 2022 09:53:24 +0200
Subject: [PATCH 15/25] Set /mining/blocks/xxx APIs expiration to 60 seconds
instead of 5 minutes
---
backend/src/routes.ts | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/backend/src/routes.ts b/backend/src/routes.ts
index c39d3ec56..d65b4f836 100644
--- a/backend/src/routes.ts
+++ b/backend/src/routes.ts
@@ -645,7 +645,7 @@ class Routes {
res.header('Pragma', 'public');
res.header('Cache-control', 'public');
res.header('X-total-count', blockCount.toString());
- res.setHeader('Expires', new Date(Date.now() + 1000 * 300).toUTCString());
+ res.setHeader('Expires', new Date(Date.now() + 1000 * 60).toUTCString());
res.json(blockFees);
} catch (e) {
res.status(500).send(e instanceof Error ? e.message : e);
@@ -659,7 +659,7 @@ class Routes {
res.header('Pragma', 'public');
res.header('Cache-control', 'public');
res.header('X-total-count', blockCount.toString());
- res.setHeader('Expires', new Date(Date.now() + 1000 * 300).toUTCString());
+ res.setHeader('Expires', new Date(Date.now() + 1000 * 60).toUTCString());
res.json(blockRewards);
} catch (e) {
res.status(500).send(e instanceof Error ? e.message : e);
@@ -672,7 +672,7 @@ class Routes {
const oldestIndexedBlockTimestamp = await BlocksRepository.$oldestBlockTimestamp();
res.header('Pragma', 'public');
res.header('Cache-control', 'public');
- res.setHeader('Expires', new Date(Date.now() + 1000 * 300).toUTCString());
+ res.setHeader('Expires', new Date(Date.now() + 1000 * 60).toUTCString());
res.json({
oldestIndexedBlockTimestamp: oldestIndexedBlockTimestamp,
blockFeeRates: blockFeeRates,
@@ -690,7 +690,7 @@ class Routes {
res.header('Pragma', 'public');
res.header('Cache-control', 'public');
res.header('X-total-count', blockCount.toString());
- res.setHeader('Expires', new Date(Date.now() + 1000 * 300).toUTCString());
+ res.setHeader('Expires', new Date(Date.now() + 1000 * 60).toUTCString());
res.json({
sizes: blockSizes,
weights: blockWeights
From 79bd744844360183c1f592f3171f5af636baf997 Mon Sep 17 00:00:00 2001
From: softsimon
Date: Fri, 20 May 2022 13:41:30 +0400
Subject: [PATCH 16/25] Fixes broken fee rate calculation for mempool
transactions
fixes #1684
---
backend/src/api/bitcoin/bitcoin-api.ts | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/backend/src/api/bitcoin/bitcoin-api.ts b/backend/src/api/bitcoin/bitcoin-api.ts
index 48368a128..e52aaffaf 100644
--- a/backend/src/api/bitcoin/bitcoin-api.ts
+++ b/backend/src/api/bitcoin/bitcoin-api.ts
@@ -192,12 +192,9 @@ class BitcoinApi implements AbstractBitcoinApi {
}
if (addPrevout) {
- if (transaction.confirmations) {
- esploraTransaction = await this.$calculateFeeFromInputs(esploraTransaction);
- } else {
- esploraTransaction = await this.$appendMempoolFeeData(esploraTransaction);
- esploraTransaction = await this.$calculateFeeFromInputs(esploraTransaction);
- }
+ esploraTransaction = await this.$calculateFeeFromInputs(esploraTransaction);
+ } else if (!transaction.confirmations) {
+ esploraTransaction = await this.$appendMempoolFeeData(esploraTransaction);
}
return esploraTransaction;
From 3e80f159d52e53f5fb00a0cbb6df0799f77813a5 Mon Sep 17 00:00:00 2001
From: softsimon
Date: Fri, 20 May 2022 15:08:45 +0400
Subject: [PATCH 17/25] Pre-load all lazy loaded modules
---
frontend/src/app/app-routing.module.ts | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts
index f3d3e3144..ae5860c78 100644
--- a/frontend/src/app/app-routing.module.ts
+++ b/frontend/src/app/app-routing.module.ts
@@ -1,5 +1,5 @@
import { NgModule } from '@angular/core';
-import { Routes, RouterModule } from '@angular/router';
+import { Routes, RouterModule, PreloadAllModules } from '@angular/router';
import { StartComponent } from './components/start/start.component';
import { TransactionComponent } from './components/transaction/transaction.component';
import { BlockComponent } from './components/block/block.component';
@@ -537,7 +537,8 @@ if (browserWindowEnv && browserWindowEnv.BASE_MODULE === 'liquid') {
imports: [RouterModule.forRoot(routes, {
initialNavigation: 'enabled',
scrollPositionRestoration: 'enabled',
- anchorScrolling: 'enabled'
+ anchorScrolling: 'enabled',
+ preloadingStrategy: PreloadAllModules
})],
})
export class AppRoutingModule { }
From 6daacac75ddd2c5f4162a80c04de29ec3f166cce Mon Sep 17 00:00:00 2001
From: softsimon
Date: Fri, 20 May 2022 17:54:06 +0400
Subject: [PATCH 18/25] Fixes for Liquid module routing
---
frontend/src/app/app-routing.module.ts | 2 +-
frontend/src/app/graphs/graphs.routing.module.ts | 8 +++++++-
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts
index ae5860c78..672d68686 100644
--- a/frontend/src/app/app-routing.module.ts
+++ b/frontend/src/app/app-routing.module.ts
@@ -500,7 +500,7 @@ if (browserWindowEnv && browserWindowEnv.BASE_MODULE === 'liquid') {
},
{
path: '**',
- redirectTo: 'all'
+ redirectTo: 'featured'
}
]
},
diff --git a/frontend/src/app/graphs/graphs.routing.module.ts b/frontend/src/app/graphs/graphs.routing.module.ts
index c8546e876..46649551a 100644
--- a/frontend/src/app/graphs/graphs.routing.module.ts
+++ b/frontend/src/app/graphs/graphs.routing.module.ts
@@ -7,6 +7,7 @@ import { BlockSizesWeightsGraphComponent } from '../components/block-sizes-weigh
import { GraphsComponent } from '../components/graphs/graphs.component';
import { HashrateChartComponent } from '../components/hashrate-chart/hashrate-chart.component';
import { HashrateChartPoolsComponent } from '../components/hashrates-chart-pools/hashrate-chart-pools.component';
+import { LiquidMasterPageComponent } from '../components/liquid-master-page/liquid-master-page.component';
import { MasterPageComponent } from '../components/master-page/master-page.component';
import { MempoolBlockComponent } from '../components/mempool-block/mempool-block.component';
import { MiningDashboardComponent } from '../components/mining-dashboard/mining-dashboard.component';
@@ -17,10 +18,15 @@ import { StatisticsComponent } from '../components/statistics/statistics.compone
import { TelevisionComponent } from '../components/television/television.component';
import { DashboardComponent } from '../dashboard/dashboard.component';
+const browserWindow = window || {};
+// @ts-ignore
+const browserWindowEnv = browserWindow.__env || {};
+const isLiquid = browserWindowEnv && browserWindowEnv.BASE_MODULE === 'liquid';
+
const routes: Routes = [
{
path: '',
- component: MasterPageComponent,
+ component: isLiquid ? LiquidMasterPageComponent : MasterPageComponent,
children: [
{
path: 'mining/pool/:slug',
From 7b94e9e4b4839258c1a2b454b1819941fcba4d35 Mon Sep 17 00:00:00 2001
From: softsimon
Date: Fri, 20 May 2022 18:22:04 +0400
Subject: [PATCH 19/25] Fixing the /graphs link and make it consistent
---
.../src/app/components/master-page/master-page.component.html | 2 +-
frontend/src/app/graphs/graphs.routing.module.ts | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/frontend/src/app/components/master-page/master-page.component.html b/frontend/src/app/components/master-page/master-page.component.html
index 73543663b..c3c9b7ae3 100644
--- a/frontend/src/app/components/master-page/master-page.component.html
+++ b/frontend/src/app/components/master-page/master-page.component.html
@@ -38,7 +38,7 @@
-
+
diff --git a/frontend/src/app/graphs/graphs.routing.module.ts b/frontend/src/app/graphs/graphs.routing.module.ts
index 46649551a..5f2e89b59 100644
--- a/frontend/src/app/graphs/graphs.routing.module.ts
+++ b/frontend/src/app/graphs/graphs.routing.module.ts
@@ -88,6 +88,10 @@ const routes: Routes = [
path: 'mining/block-sizes-weights',
component: BlockSizesWeightsGraphComponent,
},
+ {
+ path: '',
+ redirectTo: 'mempool',
+ },
]
},
{
From 1402fc54c9df168b636b5515e23bd331e92a7445 Mon Sep 17 00:00:00 2001
From: softsimon
Date: Fri, 20 May 2022 18:49:14 +0400
Subject: [PATCH 20/25] Reward stats i18n fix
---
.../reward-stats/reward-stats.component.html | 2 +-
frontend/src/locale/messages.xlf | 83 ++++++++++---------
2 files changed, 44 insertions(+), 41 deletions(-)
diff --git a/frontend/src/app/components/reward-stats/reward-stats.component.html b/frontend/src/app/components/reward-stats/reward-stats.component.html
index 345cb755d..f666ecdff 100644
--- a/frontend/src/app/components/reward-stats/reward-stats.component.html
+++ b/frontend/src/app/components/reward-stats/reward-stats.component.html
@@ -26,7 +26,7 @@