name_scan ( "start" count options )
Lists names in the database.
Arguments:
1. start (string, optional, default="") Skip initially to this name
2. count (numeric, optional, default=500) Stop after this many names
3. options (json object, optional) Options for this RPC call
{
"nameEncoding": "str", (string) Encoding ("ascii", "utf8" or "hex") of the name argument
"valueEncoding": "str", (string) Encoding ("ascii", "utf8" or "hex") of the value argument
"minConf": n, (numeric, optional, default=1) Minimum number of confirmations
"maxConf": n, (numeric) Maximum number of confirmations
"prefix": "str", (string) Filter for names with the given prefix
"regexp": "str", (string) Filter for names matching the regexp
}
Result:
[ (json array)
{ (json object)
"name" : "str", (string) the requested name
"name_encoding" : "str", (string) the encoding of "name"
"name_error" : "str", (string) replaces "name" in case there is an error
"value" : "str", (string) the name's current value
"value_encoding" : "str", (string) the encoding of "value"
"value_error" : "str", (string) replaces "value" in case there is an error
"txid" : "hex", (string) the name's last update tx
"vout" : n, (numeric) the index of the name output in the last update
"address" : "str", (string) the address holding the name
"ismine" : true|false, (boolean) whether the name is owned by the wallet
"height" : n (numeric) the name's last update height
},
...
]
Examples:
> spacexpanse-cli name_scan
> spacexpanse-cli name_scan "d/abc"
> spacexpanse-cli name_scan "d/abc" 10
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "name_scan", "params": ["d/abc"]}' -H 'content-type: text/plain;' http://127.0.0.1:11998/
[
{
"name": "start",
"detailsLines": [],
"properties": [
"string",
"optional",
"default=\"\""
],
"description": "Skip initially to this name"
},
{
"name": "count",
"detailsLines": [],
"properties": [
"numeric",
"optional",
"default=500"
],
"description": "Stop after this many names"
},
{
"name": "options",
"detailsLines": [
" {",
" \"nameEncoding\": \"str\", (string) Encoding (\"ascii\", \"utf8\" or \"hex\") of the name argument",
" \"valueEncoding\": \"str\", (string) Encoding (\"ascii\", \"utf8\" or \"hex\") of the value argument",
" \"minConf\": n, (numeric, optional, default=1) Minimum number of confirmations",
" \"maxConf\": n, (numeric) Maximum number of confirmations",
" \"prefix\": \"str\", (string) Filter for names with the given prefix",
" \"regexp\": \"str\", (string) Filter for names matching the regexp",
" }"
],
"properties": [
"json object",
"optional"
],
"description": "Options for this RPC call"
}
]