Skip to content

2.3.0

Compare
Choose a tag to compare
@overcat overcat released this 31 Mar 14:05
f409fa8

Added

  • Add SEP-0029 (memo required) support. (#291)
    Extends Server.submit_transaction to always run a memo required check before
    sending the transaction. If any of the destinations require a memo and the
    transaction doesn't include one, then an AccountRequiresMemoError will be thrown.

    This may degrade performance, but you can skip this check by passing skip_memo_required_check=True to Server.submit_transaction:

    server.submit_transaction(tx, skip_memo_required_check=True)
    

    The check runs for each operation of type:

    • Payment
    • PathPaymentStrictReceive
    • PathPaymentStrictSend
    • AccountMerge

    If the transaction includes a memo, then memo required checking is skipped.

    See SEP-0029 for more information about memo required check.

Changed

  • Optimize the processing of horizon parameters. (#289)

View at: https://pypi.org/project/stellar-sdk/2.3.0/