public interface Bitcoin
| Modifier and Type | Interface and Description |
|---|---|
static class |
Bitcoin.EstimateMode |
| Modifier and Type | Method and Description |
|---|---|
String |
getbestblockhash() |
Block |
getblock(String blockhash) |
Block |
getblock(String blockhash,
int verbosity) |
String |
getblockhash(Long height) |
String |
getnewaddress()
`getnewaddress ( "label" "address_type" )`
Returns a new Bitcoin address for receiving payments.
|
String |
getnewaddress(String label) |
String |
getnewaddress(String label,
String address_type) |
Transaction |
gettransaction(String txid)
gettransaction "txid" ( include_watchonly )
Get detailed information about in-wallet transaction
|
Transaction |
gettransaction(String txid,
boolean include_watchonly) |
String |
sendtoaddress(String address,
BigDecimal amount)
sendtoaddress "address" amount ( "comment" "comment_to" subtractfeefromamount replaceable conf_target "estimate_mode")
Send an amount to a given address.
|
String |
sendtoaddress(String address,
BigDecimal amount,
String comment) |
String |
sendtoaddress(String address,
BigDecimal amount,
String comment,
String comment_to) |
String |
sendtoaddress(String address,
BigDecimal amount,
String comment,
String comment_to,
boolean subtractfeefromamount) |
String |
sendtoaddress(String address,
BigDecimal amount,
String comment,
String comment_to,
boolean subtractfeefromamount,
boolean replaceable) |
String |
sendtoaddress(String address,
BigDecimal amount,
String comment,
String comment_to,
boolean subtractfeefromamount,
boolean replaceable,
long conf_target) |
String |
sendtoaddress(String address,
BigDecimal amount,
String comment,
String comment_to,
boolean subtractfeefromamount,
boolean replaceable,
long conf_target,
Bitcoin.EstimateMode estimate_mode) |
String getnewaddress()
String getbestblockhash()
Transaction gettransaction(String txid)
Transaction gettransaction(String txid, boolean include_watchonly)
String sendtoaddress(String address, BigDecimal amount)
String sendtoaddress(String address, BigDecimal amount, String comment)
String sendtoaddress(String address, BigDecimal amount, String comment, String comment_to)
String sendtoaddress(String address, BigDecimal amount, String comment, String comment_to, boolean subtractfeefromamount)
String sendtoaddress(String address, BigDecimal amount, String comment, String comment_to, boolean subtractfeefromamount, boolean replaceable)
String sendtoaddress(String address, BigDecimal amount, String comment, String comment_to, boolean subtractfeefromamount, boolean replaceable, long conf_target)
String sendtoaddress(String address, BigDecimal amount, String comment, String comment_to, boolean subtractfeefromamount, boolean replaceable, long conf_target, Bitcoin.EstimateMode estimate_mode)
Copyright © 2018. All rights reserved.