thetacli.IsKeyUnlocked

This API returns whether an account is currently unlocked.

Parameters

Object NameRequiredTypeDetail
addressStringThe address of the account to be checked
"params":[
    {
        "address": "0x7F7Bf878527AC6DE7b6fe12acD664D59d20E0001"
    }
]

Result

Result Fields

KeyTypeDetail
unlockedBooleanA boolean indicating if the account is still unlocked

Example

Request

curl <your-endpoint> \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"thetacli.IsKeyUnlocked","params":[{"address":"0x7F7Bf878527AC6DE7b6fe12acD664D59d20E0001"}],"id":1}'

Return

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "unlocked": false
      }
}
Language
Click Try It! to start a request and see the response here!