personal_listWallets
Returns a list of wallets this node manages.
JSONRPC: personal_listWallets
Request
- application/json
Body
method stringrequired
Default value: personal_listWallets
Method name
id int64required
Default value: 1
Request ID, Random or Auto incrementation
jsonrpc stringrequired
Default value: 2.0
JSON-RPC Version (2.0)
params array
Responses
- 200
Returns a list of wallets this node manages.
- application/json
- Schema
- Example (from schema)
Schema
jsonrpc stringrequired
Default value: 2.0
id int64required
error
object
result
object[]
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": [
{
"url": "keystore:///",
"status": "Locked",
"accounts": [
{
"address": "0x336010a2f91728ffe01414a87ae5d8af55f310c6",
"url": "keystore://"
}
]
}
]
}
- curl
- python
- nodejs
- java
- CURL
curl -L -X POST 'http://localhost:8551/personal/listWallets' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"method": "personal_listWallets",
"id": 1,
"jsonrpc": "2.0",
"params": [
null
]
}'
ResponseClear