RPC Browser



Arguments

name_pending ( "name" options )

Lists unconfirmed name operations in the mempool.

If a name is given, only check for operations on this name.

Arguments:
1. name                           (string, optional) Only look for this name
2. 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
     }

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
    "op" : "str",                (string) the operation being performed
    "height" : n                 (numeric) the name's last update height
  },
  ...
]

Examples:
> spacexpanse-cli name_pending 
> spacexpanse-cli name_pending "d/domob"
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "name_pending", "params": []}' -H 'content-type: text/plain;' http://127.0.0.1:11998/
[
    {
        "name": "name",
        "detailsLines": [],
        "properties": [
            "string",
            "optional"
        ],
        "description": "Only look for this name"
    },
    {
        "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",
            "     }"
        ],
        "properties": [
            "json object",
            "optional"
        ],
        "description": "Options for this RPC call"
    }
]