Show / Hide Table of Contents

Class ContractCallResult

The results returned from a contract call.

Inheritance
Object
ContractCallResult
Implements
IEquatable<ContractCallResult>
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Hashgraph
Assembly: Hashgraph.dll
Syntax
public sealed class ContractCallResult : IEquatable<ContractCallResult>

Properties

| Improve this Doc View Source

Bloom

Bloom filter for record

Declaration
public ReadOnlyMemory<byte> Bloom { get; }
Property Value
Type Description
ReadOnlyMemory<Byte>
| Improve this Doc View Source

CreatedContracts

Addresses of any contracts created as a side effect of this contract call.

Declaration
public Address[] CreatedContracts { get; }
Property Value
Type Description
Address[]
| Improve this Doc View Source

Error

An error string returned from the system if there was a problem.

Declaration
public string Error { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Events

Log events returned by the function.

Declaration
public ContractEvent[] Events { get; }
Property Value
Type Description
ContractEvent[]
| Improve this Doc View Source

Gas

The amount of gas that was used.

Declaration
public ulong Gas { get; }
Property Value
Type Description
UInt64
| Improve this Doc View Source

Result

The values returned from the contract call.

Declaration
public ContractCallResultData Result { get; }
Property Value
Type Description
ContractCallResultData

Implements

System.IEquatable<T>
  • Improve this Doc
  • View Source
In This Article
Back to top .NET Client Library for Hedera Hashgraph