namepsbt "psbt" vout nameop
Adds a name operation to an existing PSBT.
Use createpsbt first to create the basic transaction, including the required inputs and outputs also for the name.
Arguments:
1. psbt (string, required) A base64 string of a PSBT
2. vout (numeric, required) The vout of the desired name output
3. nameop (json object, required) The name operation to create
{
"op": "str", (string, required) The operation to perform, can be "name_register" and "name_update"
"name": "str", (string, required) The name to operate on
"value": "str", (string, required) The new value for the name
}
Result:
{ (json object)
"psbt" : "hex" (string) The serialised, updated PSBT
}
Examples:
> spacexpanse-cli namepsbt "psbt" 1 "{\"op\":\"name_register\",\"name\":\"my-name\",\"value\":\"first value\"
> spacexpanse-cli namepsbt "psbt" 1 "{\"op\":\"name_update\",\"name\":\"my-name\",\"value\":\"new value\"
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "namepsbt", "params": ["psbt", 1, "{\"op\":\"name_update\",\"name\":\"my-name\",\"value\":\"new value\"]}' -H 'content-type: text/plain;' http://127.0.0.1:11998/
[
{
"name": "psbt",
"detailsLines": [],
"properties": [
"string",
"required"
],
"description": "A base64 string of a PSBT"
},
{
"name": "vout",
"detailsLines": [],
"properties": [
"numeric",
"required"
],
"description": "The vout of the desired name output"
},
{
"name": "nameop",
"detailsLines": [
" {",
" \"op\": \"str\", (string, required) The operation to perform, can be \"name_register\" and \"name_update\"",
" \"name\": \"str\", (string, required) The name to operate on",
" \"value\": \"str\", (string, required) The new value for the name",
" }"
],
"properties": [
"json object",
"required"
],
"description": "The name operation to create"
}
]