system_list_local_keypairs
Retrieve and display NEAR accounts and their associated keypairs stored locally for a specified network (testnet or mainnet).
Instructions
List all NEAR accounts and their keypairs in the local keystore by network.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
networkId | No | mainnet |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"networkId": {
"default": "mainnet",
"enum": [
"testnet",
"mainnet"
],
"type": "string"
}
},
"type": "object"
}