Questions tagged [pyota]

For questions about the Python IOTA library pyota.

14 questions
5
votes
1 answer

Error cannot import name 'Seed' from 'iota'

When trying to import Seed from iota i receive following error: Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 22:22:05) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> from iota import…
Tender
  • 53
  • 2
4
votes
1 answer

Decode signature_message_fragment with utf-8

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xfc in position 7: invalid start byte from…
Foxxer
  • 41
  • 2
3
votes
1 answer

Pyota: prepare_transfer

I am trying to construct a simple transaction: prepare_transfer should get as input transfers: Iterable[ProposedTransaction], and two other optional parameters. How could one make an Iterable out of a ProposedTransaction object? Is there somewhere…
Nir
  • 177
  • 5
1
vote
1 answer

How to find all the messages of the TXs of an Address?

I'd like to find every message attached to the transactions of an address So I have to search transaction by address with find_transactions(), then list all the signature_message_fragment How can I do this? I tried this: list_add =…
P. Matti
  • 31
  • 4