Source code for stellar_sdk.operation.account_merge

from .operation import Operation
from .utils import check_ed25519_public_key, check_source
from ..keypair import Keypair
from ..strkey import StrKey
from ..xdr import Xdr


[docs]class AccountMerge(Operation): """The :class:`AccountMerge` object, which represents a AccountMerge operation on Stellar's network. Transfers the native balance (the amount of XLM an account holds) to another account and removes the source account from the ledger. Threshold: High :param destination: Destination to merge the source account into. :param source: The source account (defaults to transaction source). """ def __init__(self, destination: str, source: str = None) -> None: super().__init__(source) check_ed25519_public_key(destination) self.destination: str = destination @classmethod def type_code(cls) -> int: return Xdr.const.ACCOUNT_MERGE def _to_operation_body(self) -> Xdr.nullclass: destination = Keypair.from_public_key(self.destination).xdr_account_id() body = Xdr.nullclass() body.type = Xdr.const.ACCOUNT_MERGE body.destination = destination return body
[docs] @classmethod def from_xdr_object( cls, operation_xdr_object: Xdr.types.Operation ) -> "AccountMerge": """Creates a :class:`AccountMerge` object from an XDR Operation object. """ source = Operation.get_source_from_xdr_obj(operation_xdr_object) destination = StrKey.encode_ed25519_public_key( operation_xdr_object.body.destination.ed25519 ) return cls(source=source, destination=destination)