SimulateHostFunctionResult

@Serializable
data class SimulateHostFunctionResult(val auth: List<String>? = null, val xdr: String? = null)

Result of simulating a host function invocation.

Constructors

Link copied to clipboard
constructor(auth: List<String>? = null, xdr: String? = null)

Properties

Link copied to clipboard

List of base64-encoded SorobanAuthorizationEntry XDR objects required for authorization

Link copied to clipboard
val xdr: String?

Base64-encoded SCVal XDR object representing the return value

Functions

Link copied to clipboard

Parses the auth field from a list of base64-encoded strings to a list of SorobanAuthorizationEntry XDR objects.

Link copied to clipboard

Parses the xdr field from a base64-encoded string to an SCVal XDR object.