Source code for stellar_sdk.operation.change_trust

from decimal import Decimal
from typing import Union

from .operation import Operation
from .utils import check_amount
from .. import xdr as stellar_xdr
from ..asset import Asset


[docs]class ChangeTrust(Operation): """The :class:`ChangeTrust` object, which represents a ChangeTrust operation on Stellar's network. Creates, updates, or deletes a trustline. For more on trustlines, please refer to the `assets documentation <https://www.stellar.org/developers/guides/concepts/assets.html>_`. Threshold: Medium :param asset: The asset for the trust line. :param limit: The limit for the asset, defaults to max int64(922337203685.4775807). If the limit is set to "0" it deletes the trustline. :param source: The source account (defaults to transaction source). """ _DEFAULT_LIMIT = "922337203685.4775807" _XDR_OPERATION_TYPE: stellar_xdr.OperationType = stellar_xdr.OperationType.CHANGE_TRUST def __init__( self, asset: Asset, limit: Union[str, Decimal] = None, source: str = None, ) -> None: super().__init__(source) self.asset: Asset = asset if ( limit is None ): # We don't need this if the user can send the value with correct type. self.limit: Union[str, Decimal] = self._DEFAULT_LIMIT else: check_amount(limit) self.limit = limit def _to_operation_body(self) -> stellar_xdr.OperationBody: line = self.asset.to_xdr_object() limit = stellar_xdr.Int64(Operation.to_xdr_amount(self.limit)) change_trust_op = stellar_xdr.ChangeTrustOp(line, limit) body = stellar_xdr.OperationBody( type=self._XDR_OPERATION_TYPE, change_trust_op=change_trust_op ) return body
[docs] @classmethod def from_xdr_object(cls, xdr_object: stellar_xdr.Operation) -> "ChangeTrust": """Creates a :class:`ChangeTrust` object from an XDR Operation object. """ source = Operation.get_source_from_xdr_obj(xdr_object) assert xdr_object.body.change_trust_op is not None line = Asset.from_xdr_object(xdr_object.body.change_trust_op.line) limit = Operation.from_xdr_amount(xdr_object.body.change_trust_op.limit.int64) op = cls(source=source, asset=line, limit=limit) op._source_muxed = Operation.get_source_muxed_from_xdr_obj(xdr_object) return op
def __str__(self): return f"<ChangeTrust [asset={self.asset}, limit={self.limit}, source={self.source}]>"