TriportRPC

personal_listWallets

Last updated:

Parameters

This method takes no parameters.

Returns

personal_listWallets return value
FieldType
resultobject

Examples

curl https://triport.io/sol \
  -X POST -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer <api-key>' \
  -d '{"id":1,"method":"personal_listWallets","params":[],"jsonrpc":"2.0"}'
const res = await fetch("https://triport.io/sol", {
  method: "POST",
  headers: { "Content-Type": "application/json", Authorization: "Bearer <api-key>" },
  body: JSON.stringify({
  "id": 1,
  "method": "personal_listWallets",
  "params": [],
  "jsonrpc": "2.0"
}),
});
const data = await res.json();
import requests
resp = requests.post(
    "https://triport.io/sol",
    headers={"Authorization": "Bearer <api-key>"},
    json={"id":1,"method":"personal_listWallets","params":[],"jsonrpc":"2.0"},
)
print(resp.json())

Usage

  1. Transport: HTTP (JSON-RPC).
  2. Networks: mainnet.
  3. Credit cost: 1 per call.

FAQ

What does personal_listWallets do?
Not available through Triport. personal_* is a node account-management namespace and is not exposed by the service.
How many credits does personal_listWallets cost?
personal_listWallets costs 1 credit(s) per call on Triport by default.
Is personal_listWallets available over WebSocket?
personal_listWallets is an HTTP JSON-RPC method.