A Bitcoin Core wallet RPC that retrieves detailed information on one of the wallet’s transactions
Questions tagged [gettransaction]
9 questions
6
votes
2 answers
Why does gettransaction report me only the receiving address?
Both on "send" and "receive" transactions, the command gettransaction gives me the account name, and the receiving address, ignoring the send address. Why should I care about receiving address in a "receive" transaction? I want to know the send…
o0'.
- 5,240
- 6
- 38
- 66
3
votes
3 answers
Determining refund addresses with bitcoind
I'm trying to determine the source address of transactions for automated refunding, but I'm seeing unexpected output from Bitcoin-QT
The transaction in question on blockexplorer: 8bc80f72d9cc6fecda77138e7364f95b48d652db404889deafd48158dc46387e
And…
Taylor Gerring
- 413
- 2
- 9
2
votes
1 answer
Get transaction after certain (tx, block, time or other) using insight-api Bitcoin CASH
Now i can get all transactions by address (Bitcoin Cash) using this request to api:
https://test-bch-insight.bitpay.com/api/txs/?address=qptaxxrqcz7qunclcvlcza9an6qlqqhzlya2d4e4fn
But i want to get transactions only after certain…
Дима Марков
- 314
- 1
- 10
2
votes
1 answer
Get transaction fees per transaction via gettransaction
For a research project I need to analyse all transactions that happened in 2015. All I care about are volumes transacted, fees paid and a timestamp per transaction or corresponding block.
Getting this data via APIs over the net creates lots of…
mxschumacher
- 21
- 3
1
vote
3 answers
Get transaction data from full node
Background Information
I am building an application that requires the ability to query any bitcoin full node (from a python script using raw tcp sockets) in order to read the OP_Return value listed in the following transaction…
Dimitree
- 21
- 1
- 4
1
vote
1 answer
How to implement getrawmempool?
I’m trying to get all transaction ids in the memory pool as json array. I just finish downloading bitcoin core and do now know where to begin. Any help would be appreciated!!
Xi Zheng
- 11
- 1
1
vote
2 answers
How to get the input address from an txid with bitcoind
I want to get the input addresses of a transaction with a known id. If I use getrawtransaction I get something like:
"vin" : [
{
"txid" : "470a499101b7042b225dab4f15fa252cdc7f3a16153e33d66d0c8c53b1d83aaa",
"vout" : 1,
"scriptSig" : {
"asm" :…
user599464
- 446
- 4
- 11
1
vote
1 answer
order of the details array in the output of the gettransaction wallet API call
According to https://developer.bitcoin.org/reference/rpc/gettransaction.html the details array contains a list of the outputs of that transaction. Each output has a vout. So in my tests, it seems that the order seem to be the same than the vouts so…
k9ert
- 13
- 2
0
votes
1 answer
What is type 'pubkey' in a scriptpubkey output from getrawtransaction?
Here is an output from getrawtransaction:
{
...
"vout": [
{
"value": 12.50000000,
"n": 0,
"scriptPubKey": {
"asm": "03d81b3d2ac76e322dcb2e713cb8fdeaf68cb83406c0e4d28dcd10a880ef172a6a OP_CHECKSIG",
"hex":…
Jus12
- 1,365
- 1
- 14
- 24