JSON-RPC sendtoaddress

Z Poznámkový blok
Přejít na: navigace, hledání
sendtoaddress "address" amount ( "comment" "comment_to" subtractfeefromamount replaceable conf_target "estimate_mode")

Send an amount to a given address.

Arguments:
1. "address"            (string, required) The litecoin address to send to.
2. "amount"             (numeric or string, required) The amount in LTC 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 litecoins than you enter in the amount field.
6. replaceable            (boolean, optional) Allow this transaction to be replaced by a transaction with higher fees via BIP 125
7. conf_target            (numeric, optional) Confirmation target (in blocks)
8. "estimate_mode"      (string, optional, default=UNSET) The fee estimate mode, must be one of:
       "UNSET"
       "ECONOMICAL"
       "CONSERVATIVE"

Result:
"txid"                  (string) The transaction id.

Examples:
> litecoin-cli sendtoaddress "LEr4HnaefWYHbMGXcFp2Po1NPRUeIk8km2" 0.1
> litecoin-cli sendtoaddress "LEr4HnaefWYHbMGXcFp2Po1NPRUeIk8km2" 0.1 "donation" "seans outpost"
> litecoin-cli sendtoaddress "LEr4HnaefWYHbMGXcFp2Po1NPRUeIk8km2" 0.1 "" "" true


sendtoaddress "address" amount ( "comment" "comment_to" subtractfeefromamount replaceable conf_target "estimate_mode")

Odeslat částku na danou adresu.

Argumenty:
1. "adresa"     (požadavek na řetězec) Adresu litecoin, kterou chcete odeslat.
2. "částka"     (požadovaná číselná hodnota nebo řetězec) Částka v LTC ke odeslání. např. 0.1
3. "komentář"   (řetězec, nepovinný) Komentář slouží k ukládání transakcí.
                             To není součást transakce, jen se drží v peněžence.
4. "comment_to" (řetězec, volitelně) Komentář k uložení jména osoby nebo organizace
                             na které odesíláte transakci. Toto není součástí
                             transakce, jen držet v peněžence.
5. subtractfeefromamount (boolean, volitelně, default = false) Poplatek bude odečten od odeslané částky.
                             Příjemce dostane méně litecoinů než zadáte do pole částky.
6. Vyměnitelný  (boolean, volitelný) Umožnit, aby byla tato transakce nahrazena transakcí s vyššími poplatky prostřednictvím BIP 125
7. conf_target  (číselný, volitelný) Cíl pro potvrzení (v blocích)
8. "odhad_mod"  (řetězec, nepovinný, výchozí = UNSET) Režim odhadu poplatku musí být jedním z následujících způsobů:
       "UNSET"
       "EKONOMICKÝ"
       "KONZERVATIVNÍ"

Výsledek:
"txid" (řetězec) ID transakce.


Zpět na Qt peněženku - JSON-RPC