graphenecommon.aio.memo module

class graphenecommon.aio.memo.Memo(from_account=None, to_account=None, **kwargs)

Bases: graphenecommon.memo.Memo

Deals with Memos that are attached to a transfer

Parameters:
  • from_account (account.Account) – Account that has sent the memo
  • to_account (account.Account) – Account that has received the memo
  • blockchain_instance (instance) – instance to use when accesing a RPC

A memo is encrypted with a shared secret derived from a private key of the sender and a public key of the receiver. Due to the underlying mathematics, the same shared secret can be derived by the private key of the receiver and the public key of the sender. The encrypted message is perturbed by a nonce that is part of the transmitted message.

from .memo import Memo
m = await Memo("from-account", "to-account")
m.blockchain.wallet.unlock("secret")
enc = (m.encrypt("foobar"))
print(enc)
>> {'nonce': '17329630356955254641', 'message': '8563e2bb2976e0217806d642901a2855'}
print(m.decrypt(enc))
>> foobar

To decrypt a memo, simply use

from memo import Memo
m = await Memo()
m.blockchain.wallet.unlock("secret")
print(memo.decrypt(op_data["memo"]))

if op_data being the payload of a transfer operation.