Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add asset lock special txs #112

Merged
merged 4 commits into from
Aug 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
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
thephez committed Aug 22, 2024

Verified

This commit was signed with the committer’s verified signature.
richiware Ricardo González
commit c1674f1398267369ddec23f4aae7194d3a072bad
4 changes: 2 additions & 2 deletions docs/api/remote-procedure-calls-raw-transactions.md
Original file line number Diff line number Diff line change
@@ -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_