mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 14:50:52 +01:00
[doc] fix copy, formatting and hide accelerator doc title if non official instance
This commit is contained in:
parent
a3055e20f4
commit
b2a130bb17
2 changed files with 6 additions and 6 deletions
|
@ -9888,7 +9888,7 @@ export const restApiDocsData = [
|
|||
fragment: "get-deposit-history",
|
||||
title: "GET Deposit History",
|
||||
description: {
|
||||
default: "<p>Returns a list of previous deposits made as prepayment for the accelerator service.</p>"
|
||||
default: "<p>Returns a list of deposits made as prepayment for the accelerator service.</p>"
|
||||
},
|
||||
urlString: "/v1/services/accelerator/deposit-history",
|
||||
showConditions: [""],
|
||||
|
@ -9936,7 +9936,7 @@ export const restApiDocsData = [
|
|||
fragment: "balance",
|
||||
title: "GET Available Balance",
|
||||
description: {
|
||||
default: "<p>Return your current available balance, as well as how much funds are currently locked and much you've been charged so far.</p>"
|
||||
default: "<p>Returns your currently available balance, currently locked funds, and total fees paid so far.</p>"
|
||||
},
|
||||
urlString: "/v1/services/accelerator/balance",
|
||||
showConditions: [""],
|
||||
|
@ -9970,7 +9970,7 @@ export const restApiDocsData = [
|
|||
fragment: "estimate",
|
||||
title: "POST Calculate Estimated Costs",
|
||||
description: {
|
||||
default: "<p>Return an estimation of the costs to accelerate a transaction.</p>"
|
||||
default: "<p>Returns estimated costs to accelerate a transaction.</p>"
|
||||
},
|
||||
urlString: "/v1/services/accelerator/estimate",
|
||||
showConditions: [""],
|
||||
|
@ -10044,9 +10044,9 @@ export const restApiDocsData = [
|
|||
fragment: "history",
|
||||
title: "GET Acceleration History",
|
||||
description: {
|
||||
default: "<p>Return the history of previous acceleration requests.</p>"
|
||||
default: "<p>Return the history of previous acceleration requests.</p><p>Pass one of the following for <code>:status</code>: <code>all</code>, <code>requested</code>, <code>accelerating</code>, <code>mined</code>, <code>completed</code>, <code>failed</code>.</p>"
|
||||
},
|
||||
urlString: "/v1/services/accelerator/history[?status=all|requested|accelerating|mined|completed|failed]",
|
||||
urlString: "/v1/services/accelerator/history?status=:status",
|
||||
showConditions: [""],
|
||||
showJsExamples: showJsExamplesDefaultFalse,
|
||||
codeExample: {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div *ngFor="let item of tabData">
|
||||
<p *ngIf="( item.type === 'category' ) && ( item.showConditions.indexOf(network.val) > -1 )">{{ item.title }}</p>
|
||||
<p *ngIf="( item.type === 'category' ) && ( item.showConditions.indexOf(network.val) > -1 ) && ( !item.hasOwnProperty('options') || ( item.hasOwnProperty('options') && item.options.hasOwnProperty('officialOnly') && item.options.officialOnly && officialMempoolInstance ))">{{ item.title }}</p>
|
||||
<a *ngIf="( item.type !== 'category' ) && ( item.showConditions.indexOf(network.val) > -1 ) && ( !item.hasOwnProperty('options') || ( item.hasOwnProperty('options') && item.options.hasOwnProperty('officialOnly') && item.options.officialOnly && officialMempoolInstance ) || ( item.hasOwnProperty('options') && item.options.hasOwnProperty('auditOnly') && item.options.auditOnly && auditEnabled ) )" [routerLink]="['./']" fragment="{{ item.fragment }}" (click)="navLinkClick($event)">{{ item.title }}</a>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue