get_wallet_names
The get_wallet_names method returns returns a list of wallet names for a user’s device. If the user is logged in, it will also return the name of the active wallet.
Arguments
| Structure | Type | Description |
|---|---|---|
| (none) |
Response
| Structure | Type | Description |
|---|---|---|
| wallet_names | list | Names of wallets stored on a user’s device. |
| activated_wallet | string | Names of the currrently active wallet. If not yet logged in, returns null. |
📌 Examples
Command
POST get_wallet_names
{
"userpass": "RPC_UserP@SSW0RD",
"mmrpc": "2.0",
"method": "get_wallet_names",
"id": 0
} curl --url "http://127.0.0.1:7783" --data '{
"userpass": "RPC_UserP@SSW0RD",
"mmrpc": "2.0",
"method": "get_wallet_names",
"id": 0
}' import requests
import json
url = "http://127.0.0.1:7783"
payload = {
"userpass": "RPC_UserP@SSW0RD",
"mmrpc": "2.0",
"method": "get_wallet_names",
"id": 0
}
response = requests.post(url, json=payload)
print(json.dumps(response.json(), indent=2)) const payload = {
"userpass": "RPC_UserP@SSW0RD",
"mmrpc": "2.0",
"method": "get_wallet_names",
"id": 0
};
const response = await fetch("http://127.0.0.1:7783", {
method: "POST",
body: JSON.stringify(payload),
});
console.log(await response.json()); <?php
$payload = <<<'JSON'
{
"userpass": "RPC_UserP@SSW0RD",
"mmrpc": "2.0",
"method": "get_wallet_names",
"id": 0
}
JSON;
$ch = curl_init("http://127.0.0.1:7783");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
$response = curl_exec($ch);
curl_close($ch);
echo $response; package main
import (
"bytes"
"fmt"
"io"
"net/http"
)
func main() {
payload := []byte(`{"userpass":"RPC_UserP@SSW0RD","mmrpc":"2.0","method":"get_wallet_names","id":0}`)
resp, err := http.Post("http://127.0.0.1:7783", "application/json", bytes.NewBuffer(payload))
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
} require 'net/http'
require 'json'
require 'uri'
uri = URI("http://127.0.0.1:7783")
payload = {
"userpass": "RPC_UserP@SSW0RD",
"mmrpc": "2.0",
"method": "get_wallet_names",
"id": 0
}
response = Net::HTTP.post(uri, payload.to_json, 'Content-Type' => 'application/json')
puts JSON.pretty_generate(JSON.parse(response.body)) Show Response
Response (in no-login mode)
{
"mmrpc": "2.0",
"result": {
"wallet_names": ["Robert Paulson", "Spartacus", "John Galt", "Kaiser Soze"],
"activated_wallet": null
},
"id": 0
}Response (while logged in)
{
"mmrpc": "2.0",
"result": {
"wallet_names": ["Robert Paulson", "Spartacus", "John Galt", "Kaiser Soze"],
"activated_wallet": "Robert Paulson"
},
"id": 0
}