From c1674f1398267369ddec23f4aae7194d3a072bad Mon Sep 17 00:00:00 2001 From: thephez <thephez@users.noreply.github.com> Date: Thu, 8 Feb 2024 09:08:44 -0500 Subject: [PATCH] docs(rpc): add new rpcs (#97) * docs(rpc): add getrawtransactionmulti * docs(rpc): update quick reference * docs(rpc): fix urls * docs(rpc): add internal links * feat: add getassetunlockstatuses * docs: update quick ref with new rpc * doc: make see also consistent on page * docs: add new rpc to quick ref * style: consistent formatting * docs: add submitchainlock rpc * docs: minor update * docs: consolidate params table * docs: address review comments --- docs/api/remote-procedure-calls-raw-transactions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/remote-procedure-calls-raw-transactions.md b/docs/api/remote-procedure-calls-raw-transactions.md index fbe8be37..3acaf65c 100644 --- a/docs/api/remote-procedure-calls-raw-transactions.md +++ b/docs/api/remote-procedure-calls-raw-transactions.md @@ -1205,14 +1205,14 @@ _Result (if verbose=`false`)---the serialized transactions_ | Name | Type | Presence | Description | | -------- | ------------ | ----------------------- | ----------- | | `result` | object | Required<br>(exactly 1) | If the transaction was found, this will be an object containing the serialized transaction encoded as hex. | -|→<br>TXID / Raw tx | string:string | Required<br>(1 or more) | A key/value pair with the transaction ID (key) and raw transaction data (value). See the [`getrawtransaction` RPC](#rpc-raw-txs-getrawtx-hex) for an example of the hex transaction data. | +|→<br>TXID / Raw tx | string:string | Required<br>(1 or more) | A key/value pair with the transaction ID (key) and raw transaction data (value). See the [`getrawtransaction` RPC](../api/remote-procedure-calls-raw-transactions.md#rpc-raw-txs-getrawtx-hex) for an example of the hex transaction data. | _Result (if verbose=`true`)---the decoded transactions_ | Name | Type | Presence | Description | | --------------------------- | -------------- | ----------------------- | ----------- | | `result` | object | Required<br>(exactly 1) | If the transaction was found, this will be an object describing it | -|→<br>TXID / Decoded tx | string:string | Required<br>(1 or more) | A key/value pair with the transaction ID (key) and decoded transaction data represented in JSON (value). See the [`getrawtransaction` RPC](#rpc-raw-txs-getrawtx-decoded) for an example of the decoded transaction data. | +|→<br>TXID / Decoded tx | string:string | Required<br>(1 or more) | A key/value pair with the transaction ID (key) and decoded transaction data represented in JSON (value). See the [`getrawtransaction` RPC](../api/remote-procedure-calls-raw-transactions.md#rpc-raw-txs-getrawtx-decoded) for an example of the decoded transaction data. | _Examples from Dash Core 20.1.0_