Source code for stellar_sdk.xdr.invoke_host_function_op

# This is an automatically generated file.
# DO NOT EDIT or your changes may be overwritten
from __future__ import annotations

import base64
from typing import List

from xdrlib3 import Packer, Unpacker

from .host_function import HostFunction
from .soroban_authorization_entry import SorobanAuthorizationEntry

__all__ = ["InvokeHostFunctionOp"]


[docs] class InvokeHostFunctionOp: """ XDR Source Code:: struct InvokeHostFunctionOp { // Host function to invoke. HostFunction hostFunction; // Per-address authorizations for this host function. SorobanAuthorizationEntry auth<>; }; """ def __init__( self, host_function: HostFunction, auth: List[SorobanAuthorizationEntry], ) -> None: _expect_max_length = 4294967295 if auth and len(auth) > _expect_max_length: raise ValueError( f"The maximum length of `auth` should be {_expect_max_length}, but got {len(auth)}." ) self.host_function = host_function self.auth = auth def pack(self, packer: Packer) -> None: self.host_function.pack(packer) packer.pack_uint(len(self.auth)) for auth_item in self.auth: auth_item.pack(packer) @classmethod def unpack(cls, unpacker: Unpacker) -> InvokeHostFunctionOp: host_function = HostFunction.unpack(unpacker) length = unpacker.unpack_uint() auth = [] for _ in range(length): auth.append(SorobanAuthorizationEntry.unpack(unpacker)) return cls( host_function=host_function, auth=auth, ) def to_xdr_bytes(self) -> bytes: packer = Packer() self.pack(packer) return packer.get_buffer() @classmethod def from_xdr_bytes(cls, xdr: bytes) -> InvokeHostFunctionOp: unpacker = Unpacker(xdr) return cls.unpack(unpacker) def to_xdr(self) -> str: xdr_bytes = self.to_xdr_bytes() return base64.b64encode(xdr_bytes).decode() @classmethod def from_xdr(cls, xdr: str) -> InvokeHostFunctionOp: xdr_bytes = base64.b64decode(xdr.encode()) return cls.from_xdr_bytes(xdr_bytes) def __hash__(self): return hash( ( self.host_function, self.auth, ) ) def __eq__(self, other: object): if not isinstance(other, self.__class__): return NotImplemented return self.host_function == other.host_function and self.auth == other.auth def __str__(self): out = [ f"host_function={self.host_function}", f"auth={self.auth}", ] return f"<InvokeHostFunctionOp [{', '.join(out)}]>"