privex.steemengine.SteemEngineToken.SteemEngineToken.list_transactions

SteemEngineToken.list_transactions(user, symbol=None, limit=100, offset=0) List[SETransaction][source]

Get the Steem Engine transaction history for a given account

Example:

>>> for tx in SteemEngineToken().list_transactions('someguy123'):
...     print(tx.timestamp, tx.sender, 'sent', tx.quantity, tx.symbol, 'to', tx.to)
2019-07-04T06:18:09.000Z market sent 100 SGTK to someguy123
2019-07-04T01:01:15.000Z minnowsupport sent 0.924 PAL to someguy123
2019-07-03T17:10:36.000Z someguy123 sent 1 BTSP to btsp
Parameters
  • user (str) – Account name to filter by

  • symbol (str) – Symbol to filter by, e.g. ENG (optional)

  • limit (int) – Return this many transactions (optional)

  • offset (int) – Skip this many transactions (for pagination) (optional)

Return List<SETransaction> txs

A list of SETransaction containing

block, txid, timestamp, symbol, sender, from_type, to, to_type, memo, quantity