- bump
bitcoin
dependency to version0.25
, increasing our MSRV to1.29.0
- test against
bitcoind
0.20.0
and0.20.1
- add
get_balances
- add
get_mempool_entry
- add
list_since_block
- add
get_mempool_entry
- add
list_since_block
- add
uptime
- add
get_network_hash_ps
- add
get_tx_out_set_info
- add
get_net_totals
- partially implement
scantxoutset
- extend
create_wallet
and related APIs - extend
GetWalletInfoResult
- extend
WalletTxInfo
- extend testsuite
- fix
GetPeerInfoResult
- fix
GetNetworkInfoResult
- fix
GetTransactionResultDetailCategory
- fix
GetMempoolEntryResult
for bitcoind prior to0.19.0
- fix
GetBlockResult
andGetBlockHeaderResult
- fix
minimum_sum_amount
field name inListUnspentQueryOptions
- add missing "orphan" variant for
GetTransactionResultDetailCategory
- add
ImportMultiRescanSince
to support "now" forimportmulti
'stimestamp
parameter - rename logging target to
bitcoincore_rpc
instead ofbitcoincore_rpc::client
- other logging improvements
- rename
dump_priv_key
->dump_private_key
+ change return type - rename
get_block_header_xxx
methods to conform withget_block_xxx
methods - rename
get_raw_transaction_xxx
methods to conform withget_block_xxx
methods - rename
GetBlockHeaderResult
fields - rename
GetMiningInfoResult
fields - represent difficulty values as
f64
instead ofBigUint
- fix
get_peer_info
- fix
get_transaction
- fix
get_balance
- fix
get_blockchain_info
and make compatible with both 0.18 and 0.19 - fix
get_address_info
- fix
send_to_address
- fix
estimate_smart_fee
- fix
import_private_key
- fix
list_received_by_address
- fix
import_address
- fix
finalize_psbt
- fix
fund_raw_transaction
- fix
test_mempool_accept
- fix
stop
- fix
rescan_blockchain
- add
import_address_script
- add
get_network_info
- add
version
- add
Error::UnexpectedStructure
- add
GetTransactionResultDetailCategory::Immature
- make
list_unspent
more ergonomic - made all exported enum types implement
Copy
- export
jsonrpc
dependency. - remove
num_bigint
dependency
- Add
wallet_create_funded_psbt
- Add
get_descriptor_info
- Add
combine_psbt
- Add
derive_addresses
- Add
finalize_psbt
- Add
rescan_blockchain
- use
bitcoin::PublicKey
instead ofsecp256k1::PublicKey
- fix get_mining_info result issue
- fix test_mempool_accept issue
- fix get_transaction result issues
- fix bug in fund_raw_transaction
- add list_transactions
- add get_raw_mempool
- add reconsider_block
- add import_multi
- add import_public_key
- add set_label
- add lock_unspent
- add unlock_unspent
- add create_wallet
- add load_wallet
- add unload_wallet
- increased log level for requests to debug
- polish Auth to use owned Strings
- fix using Amount type and Address types where needed
- use references of sha256d::Hashes instead of owned/copied
- add get_tx_out_proof
- add import_address
- add list_received_by_address
- add support for cookie authentication
- add fund_raw_transaction command
- deprecate sign_raw_transaction
- use PrivateKey type for calls instead of string
- fix for sign_raw_transaction
- use 32-bit integers for confirmations, signed when needed
- add RawTx trait for commands that take raw transactions
- update jsonrpc dependency to v0.11.0
- fix for create_raw_transaction
- fix for send_to_address
- fix for get_new_address
- fix for get_tx_out
- fix for get_raw_transaction_verbose
- use
secp256k1::SecretKey
type in API
- removed the GetTransaction and GetScript traits (those methods are now directly implemented on types)
- introduce RpcApi trait
- use bitcoin_hashes library
- add signrawtransactionwithkey command
- add testmempoolaccept command
- add generate command
- improve hexadecimal byte value representation
- bugfix getrawtransaction (support coinbase txs)
- update rust-bitcoin dependency v0.16.0 -> v0.18.0
- add RetryClient example
- add send_to_address command
- add create_raw_transaction command
- Client methods take self without mut