Class ContractCallResult
The results returned from a contract call.
Implements
Inherited Members
Namespace: Hashgraph
Assembly: Hashgraph.dll
Syntax
public sealed class ContractCallResult : IEquatable<ContractCallResult>
Properties
| Improve this Doc View SourceBloom
Bloom filter for record
Declaration
public ReadOnlyMemory<byte> Bloom { get; }
Property Value
Type | Description |
---|---|
ReadOnlyMemory<Byte> |
CreatedContracts
Addresses of any contracts created as a side effect of this contract call.
Declaration
public Address[] CreatedContracts { get; }
Property Value
Type | Description |
---|---|
Address[] |
Error
An error string returned from the system if there was a problem.
Declaration
public string Error { get; }
Property Value
Type | Description |
---|---|
String |
Events
Log events returned by the function.
Declaration
public ContractEvent[] Events { get; }
Property Value
Type | Description |
---|---|
ContractEvent[] |
Gas
The amount of gas that was used.
Declaration
public ulong Gas { get; }
Property Value
Type | Description |
---|---|
UInt64 |
Result
The values returned from the contract call.
Declaration
public ContractCallResultData Result { get; }
Property Value
Type | Description |
---|---|
ContractCallResultData |