sendtoname "name" amount ( "comment" "comment_to" subtractfeefromamount replaceable )
Send an amount to the owner of a name.
It is an error if the name is expired.
Requires wallet passphrase to be set with walletpassphrase call if wallet is encrypted.
Arguments:
1. name (string, required) The name to send to.
2. amount (numeric or string, required) The amount in ROD to send. eg 0.1
3. comment (string, optional) A comment used to store what the transaction is for.
This is not part of the transaction, just kept in your wallet.
4. comment_to (string, optional) A comment to store the name of the person or organization
to which you're sending the transaction. This is not part of the
transaction, just kept in your wallet.
5. subtractfeefromamount (boolean, optional, default=false) The fee will be deducted from the amount being sent.
The recipient will receive less coins than you enter in the amount field.
6. replaceable (boolean, optional, default=fallback to wallet's default) Allow this transaction to be replaced by a transaction with higher fees via BIP 125
Result:
"hex" (string) the transaction ID
Examples:
> spacexpanse-cli sendtoname "id/foobar" 0.1
> spacexpanse-cli sendtoname "id/foobar" 0.1 "donation" "seans outpost"
> spacexpanse-cli sendtoname "id/foobar" 0.1 "" "" true
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "sendtoname", "params": ["id/foobar", 0.1, "donation", "seans outpost"]}' -H 'content-type: text/plain;' http://127.0.0.1:11998/
[
{
"name": "name",
"detailsLines": [],
"properties": [
"string",
"required"
],
"description": "The name to send to."
},
{
"name": "amount",
"detailsLines": [],
"properties": [
"numeric or string",
"required"
],
"description": "The amount in ROD to send. eg 0.1"
},
{
"name": "comment",
"detailsLines": [
" This is not part of the transaction, just kept in your wallet."
],
"properties": [
"string",
"optional"
],
"description": "A comment used to store what the transaction is for."
},
{
"name": "comment_to",
"detailsLines": [
" to which you're sending the transaction. This is not part of the ",
" transaction, just kept in your wallet."
],
"properties": [
"string",
"optional"
],
"description": "A comment to store the name of the person or organization"
},
{
"name": "subtractfeefromamount",
"detailsLines": [
" The recipient will receive less coins than you enter in the amount field."
],
"properties": [
"boolean",
"optional",
"default=false"
],
"description": "The fee will be deducted from the amount being sent."
},
{
"name": "replaceable",
"detailsLines": [],
"properties": [
"boolean",
"optional",
"default=fallback to wallet's default"
],
"description": "Allow this transaction to be replaced by a transaction with higher fees via BIP 125"
}
]