Skip to content

Instantly share code, notes, and snippets.

@Hribek25
Last active September 24, 2019 10:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hribek25/a0277aef161d2f2dcfbb021692be433d to your computer and use it in GitHub Desktop.
Save Hribek25/a0277aef161d2f2dcfbb021692be433d to your computer and use it in GitHub Desktop.
IOTA address and checksum
# The snippet is a part of the IOTA Developer Essentials project. You can reach it at https://hribek25.github.io/IOTA101/
# Complete description and story behind the snippet is available at: https://hribek25.github.io/IOTA101/Allchapters_python.ipynb.html#39B011574CF0
# Requirement: PyOTA library (!pip install pyota)
import iota
from pprint import pprint
# some IOTA address
Adr = iota.Address(b"CYJV9DRIE9NCQJYLOYOJOGKQGOOELTWXVWUYGQSWCNODHJAHACADUAAHQ9ODUICCESOIVZABA9LTMM9RW")
pprint("Original input excl. checksum address:")
pprint(Adr)
print("Length: %s" % len(Adr))
AdrInclCheckSum = Adr.with_valid_checksum()
print("\nInput address including checksum:")
pprint(AdrInclCheckSum) # the last 9 trytes is the checksum
print("Length incl checksum: %s" % len(AdrInclCheckSum))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment