Class BaseEntry
Inheritance
System.Object
BaseEntry
Implements
Google.Protobuf.IMessage<BaseEntry>
Google.Protobuf.IMessage
System.IEquatable<BaseEntry>
Google.Protobuf.IDeepCloneable<BaseEntry>
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Catalyst.Protocol.Transaction
Assembly: Catalyst.Protocol.dll
Syntax
public sealed class BaseEntry : IMessage<BaseEntry>, IMessage, IEquatable<BaseEntry>, IDeepCloneable<BaseEntry>
Constructors
| Improve this Doc View SourceBaseEntry()
Declaration
public BaseEntry()
BaseEntry(BaseEntry)
Declaration
public BaseEntry(BaseEntry other)
Parameters
Type | Name | Description |
---|---|---|
BaseEntry | other |
Fields
| Improve this Doc View SourceNonceFieldNumber
Field number for the "nonce" field.
Declaration
public const int NonceFieldNumber = 1
Field Value
Type | Description |
---|---|
System.Int32 |
ReceiverPublicKeyFieldNumber
Field number for the "receiver_public_key" field.
Declaration
public const int ReceiverPublicKeyFieldNumber = 2
Field Value
Type | Description |
---|---|
System.Int32 |
SenderPublicKeyFieldNumber
Field number for the "sender_public_key" field.
Declaration
public const int SenderPublicKeyFieldNumber = 3
Field Value
Type | Description |
---|---|
System.Int32 |
TransactionFeesFieldNumber
Field number for the "transaction_fees" field.
Declaration
public const int TransactionFeesFieldNumber = 4
Field Value
Type | Description |
---|---|
System.Int32 |
Properties
| Improve this Doc View SourceDescriptor
Declaration
public static MessageDescriptor Descriptor { get; }
Property Value
Type | Description |
---|---|
Google.Protobuf.Reflection.MessageDescriptor |
Nonce
A nonce, similar to Ethereum, incremented on each transaction on the account issuing the transaction
Declaration
public ulong Nonce { get; set; }
Property Value
Type | Description |
---|---|
System.UInt64 |
Parser
Declaration
public static MessageParser<BaseEntry> Parser { get; }
Property Value
Type | Description |
---|---|
Google.Protobuf.MessageParser<BaseEntry> |
ReceiverPublicKey
PublicKey of receiver.
Declaration
public ByteString ReceiverPublicKey { get; set; }
Property Value
Type | Description |
---|---|
Google.Protobuf.ByteString |
SenderPublicKey
PublicKey of sender.
Declaration
public ByteString SenderPublicKey { get; set; }
Property Value
Type | Description |
---|---|
Google.Protobuf.ByteString |
TransactionFees
8 bytes, clear text, fees * 10^12
Declaration
public ByteString TransactionFees { get; set; }
Property Value
Type | Description |
---|---|
Google.Protobuf.ByteString |
Methods
| Improve this Doc View SourceCalculateSize()
Declaration
public int CalculateSize()
Returns
Type | Description |
---|---|
System.Int32 |
Clone()
Declaration
public BaseEntry Clone()
Returns
Type | Description |
---|---|
BaseEntry |
Equals(BaseEntry)
Declaration
public bool Equals(BaseEntry other)
Parameters
Type | Name | Description |
---|---|---|
BaseEntry | other |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Declaration
public override bool Equals(object other)
Parameters
Type | Name | Description |
---|---|---|
System.Object | other |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
System.Object.Equals(System.Object)
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Overrides
System.Object.GetHashCode()
|
Improve this Doc
View Source
MergeFrom(BaseEntry)
Declaration
public void MergeFrom(BaseEntry other)
Parameters
Type | Name | Description |
---|---|---|
BaseEntry | other |
MergeFrom(CodedInputStream)
Declaration
public void MergeFrom(CodedInputStream input)
Parameters
Type | Name | Description |
---|---|---|
Google.Protobuf.CodedInputStream | input |
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()
|
Improve this Doc
View Source
WriteTo(CodedOutputStream)
Declaration
public void WriteTo(CodedOutputStream output)
Parameters
Type | Name | Description |
---|---|---|
Google.Protobuf.CodedOutputStream | output |
Explicit Interface Implementations
| Improve this Doc View SourceIMessage.Descriptor
Declaration
MessageDescriptor IMessage.Descriptor { get; }
Returns
Type | Description |
---|---|
Google.Protobuf.Reflection.MessageDescriptor |
Implements
Google.Protobuf.IMessage<T>
Google.Protobuf.IMessage
System.IEquatable<T>
Google.Protobuf.IDeepCloneable<T>