Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions docs/core/api/remote-procedure-call-quick-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ These RPCs are all Dash-specific and not found in Bitcoin Core
* [DumpPrivKey](../api/remote-procedure-calls-wallet.md#dumpprivkey): returns the wallet-import-format (WIP) private key corresponding to an address. (But does not remove it from the wallet.)
* [DumpWallet](../api/remote-procedure-calls-wallet.md#dumpwallet): creates or overwrites a file with all wallet keys in a human-readable format. _Updated in Dash Core 0.17.0_
* [EncryptWallet](../api/remote-procedure-calls-wallet.md#encryptwallet): encrypts the wallet with a passphrase. This is only to enable encryption for the first time. After encryption is enabled, you will need to enter the passphrase to use private keys.
* [EnumerateSigners](../api/remote-procedure-calls-wallet.md#enumeratesigners): returns a list of external signers from `-signer`. **New in Dash Core 23.1.0**
* [GetAddressInfo](../api/remote-procedure-calls-wallet.md#getaddressinfo): returns information about the given Dash address. **Updated in Dash Core 23.0.0**
* [GetAddressesByLabel](../api/remote-procedure-calls-wallet.md#getaddressesbylabel): returns a list of every address assigned to a particular label. _New in Dash Core 0.17.0_
* [GetBalance](../api/remote-procedure-calls-wallet.md#getbalance): gets the balance in decimal dash across all accounts or for a particular account. _Updated in Dash Core 18.1.0_
Expand Down Expand Up @@ -222,6 +223,7 @@ These RPCs are all Dash-specific and not found in Bitcoin Core
* [UpgradeToHD](../api/remote-procedure-calls-wallet.md#upgradetohd): upgrades non-HD wallets to HD. _New in Dash Core 0.17.0_
* [UpgradeWallet](../api/remote-procedure-calls-wallet.md#upgradewallet): upgrades wallet version. _Updated in Dash Core 21.0.0_
* [WalletCreateFundedPSBT](../api/remote-procedure-calls-wallet.md#walletcreatefundedpsbt): creates and funds a transaction in the Partially Signed Transaction (PST) format. Inputs will be added if supplied inputs are not enough. **Updated in Dash Core 23.0.0**
* [WalletDisplayAddress](../api/remote-procedure-calls-wallet.md#walletdisplayaddress): displays an address on an external signer for verification. **New in Dash Core 23.1.0**
* [WalletLock](../api/remote-procedure-calls-wallet.md#walletlock): removes the wallet encryption key from memory, locking the wallet. After calling this method, you will need to call `walletpassphrase` again before being able to call any methods which require the wallet to be unlocked.
* [WalletPassphrase](../api/remote-procedure-calls-wallet.md#walletpassphrase): stores the wallet decryption key in memory for the indicated number of seconds. Issuing the `walletpassphrase` command while the wallet is already unlocked will set a new unlock time that overrides the old one.
* [WalletPassphraseChange](../api/remote-procedure-calls-wallet.md#walletpassphrasechange): changes the wallet passphrase from 'old passphrase' to 'new passphrase'.
Expand Down
1 change: 1 addition & 0 deletions docs/core/api/remote-procedure-calls-blockchain.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ Name | Type | Presence | Description
→ → → → →<br>`value` | number (Dash) | Required<br>(exactly 1) | The value in DASH
→ → → → →<br>`scriptPubKey` | object | Required<br>(exactly 1) | The script pubkey
→ → → → → →<br>`asm` | string | Required<br>(exactly 1) | The asm
→ → → → → →<br>`desc` | string | Required<br>(exactly 1) | Inferred descriptor for the output
→ → → → → →<br>`hex` | string (hex) | Required<br>(exactly 1) | The hex
→ → → → → →<br>`address` | string | Optional<br>(0 or 1) | The Dash address (only if a well-defined address exists)
→ → → → → →<br>`type` | string | Required<br>(exactly 1) | The type (e.g., 'pubkeyhash')
Expand Down
Loading