ExecRes

public struct ExecRes : Decodable

Information about operation executing

  • Undocumented

    Declaration

    Swift

    public let excepted: String?
  • Undocumented

    Declaration

    Swift

    public let newAddress: String?
  • Undocumented

    Declaration

    Swift

    public let output: String?
  • Undocumented

    Declaration

    Swift

    public let codeDeposit: String?
  • Undocumented

    Declaration

    Swift

    public let gasRefunded: UInt?
  • Undocumented

    Declaration

    Swift

    public let depositSize: UInt?
  • Undocumented

    Declaration

    Swift

    public let gasForDeposit: UInt?
  • Undocumented

    Declaration

    Swift

    public init(excepted: String?,
                newAddress: String?,
                output: String?,
                codeDeposit: String?,
                gasRefunded: UInt?,
                depositSize: UInt?,
                gasForDeposit: UInt?)
  • Declaration

    Swift

    public init(from decoder: Decoder) throws