BitShares Forum

Main => Technical Support => Topic started by: hybridd on December 06, 2015, 10:10:47 pm

Title: Determine sender by ONLY txid
Post by: hybridd on December 06, 2015, 10:10:47 pm
With other cryptocurrencies, typically I would use a blockchain explorers api to do this. I'm unsure if @roadscape 's service has a way of doing this so this is a question to him as well.

Suppose I only have the tx id (from receiving funds) i.e. 1.11.510752, how can I determine more information about this transaction (i.e. who sent it)?
Title: Re: Determine sender by ONLY txid
Post by: testz on December 07, 2015, 03:22:40 am
With other cryptocurrencies, typically I would use a blockchain explorers api to do this. I'm unsure if @roadscape 's service has a way of doing this so this is a question to him as well.

Suppose I only have the tx id (from receiving funds) i.e. 1.11.510752, how can I determine more information about this transaction (i.e. who sent it)?

GetRecentTransaction(string txid)
https://github.com/wildbunny/c-graphene-api/blob/master/GrapheneRpc/GrapheneWallet.cs#L251

GrapheneOperation.from:
https://github.com/wildbunny/c-graphene-api/blob/master/GrapheneRpc/GrapheneTypes.cs#L373

Thanks for @monsterer
Title: Re: Determine sender by ONLY txid
Post by: ebit on December 07, 2015, 04:04:23 am
#sharebits  testz 1 ROSE
#sharebits  monsterer  1 ROSE
Title: Re: Determine sender by ONLY txid
Post by: btstip on December 07, 2015, 04:06:07 am
Hey ebit, here are the results of your tips...
Curious about ShareBits? Visit us at http://sharebits.io and start tipping BTS on https://bitsharestalk.org/ today!
Source: https://bitsharestalk.org/index.php/topic,20460.msg264027/topicseen.html#msg264027
Created by hybridd (https://bitsharestalk.org/index.php?action=profile;u=40140)
Title: Re: Determine sender by ONLY txid
Post by: xeroc on December 07, 2015, 08:06:01 am
You can rund get_object on any of those "objects":
Code: [Select]
get_object 1.11.510752
Title: Re: Determine sender by ONLY txid
Post by: monsterer on December 07, 2015, 08:29:32 am
With other cryptocurrencies, typically I would use a blockchain explorers api to do this. I'm unsure if @roadscape 's service has a way of doing this so this is a question to him as well.

Suppose I only have the tx id (from receiving funds) i.e. 1.11.510752, how can I determine more information about this transaction (i.e. who sent it)?

GetRecentTransaction(string txid)
https://github.com/wildbunny/c-graphene-api/blob/master/GrapheneRpc/GrapheneWallet.cs#L251

This function is for looking up by hash id, rather than object id. For object lookups, I would use get_object instead.
Title: Re: Determine sender by ONLY txid
Post by: hybridd on December 07, 2015, 08:49:35 am
cheers guys, appreciate the support! Will have a look into this tomorrow.