Documentation
¶
Index ¶
- Variables
- type AuditorCreated
- func (*AuditorCreated) Descriptor() ([]byte, []int)deprecated
- func (x *AuditorCreated) GetBlockNumber() uint64
- func (x *AuditorCreated) GetLogIndex() uint64
- func (x *AuditorCreated) GetTs() *timestamppb.Timestamp
- func (x *AuditorCreated) GetTxID() []byte
- func (*AuditorCreated) ProtoMessage()
- func (x *AuditorCreated) ProtoReflect() protoreflect.Message
- func (x *AuditorCreated) Reset()
- func (x *AuditorCreated) String() string
- type SmartContract
- type VoucherCreated
- func (*VoucherCreated) Descriptor() ([]byte, []int)deprecated
- func (x *VoucherCreated) GetAddress() []byte
- func (x *VoucherCreated) GetBlockNumber() uint64
- func (x *VoucherCreated) GetCodeHash() string
- func (x *VoucherCreated) GetExpiryBlockHeight() uint64
- func (x *VoucherCreated) GetLogIndex() uint64
- func (x *VoucherCreated) GetRecurrent() bool
- func (x *VoucherCreated) GetTs() *timestamppb.Timestamp
- func (x *VoucherCreated) GetTxID() []byte
- func (*VoucherCreated) ProtoMessage()
- func (x *VoucherCreated) ProtoReflect() protoreflect.Message
- func (x *VoucherCreated) Reset()
- func (x *VoucherCreated) String() string
- type VoucherRemoved
- func (*VoucherRemoved) Descriptor() ([]byte, []int)deprecated
- func (x *VoucherRemoved) GetBlockNumber() uint64
- func (x *VoucherRemoved) GetExpiryBlockHeight() uint64
- func (x *VoucherRemoved) GetKey() string
- func (x *VoucherRemoved) GetLogIndex() uint64
- func (x *VoucherRemoved) GetRecurrent() bool
- func (x *VoucherRemoved) GetTs() *timestamppb.Timestamp
- func (x *VoucherRemoved) GetTxID() []byte
- func (*VoucherRemoved) ProtoMessage()
- func (x *VoucherRemoved) ProtoReflect() protoreflect.Message
- func (x *VoucherRemoved) Reset()
- func (x *VoucherRemoved) String() string
- type VoucherUsed
- func (*VoucherUsed) Descriptor() ([]byte, []int)deprecated
- func (x *VoucherUsed) GetAddress() []byte
- func (x *VoucherUsed) GetBlockNumber() uint64
- func (x *VoucherUsed) GetExpiryBlockHeight() uint64
- func (x *VoucherUsed) GetKey() string
- func (x *VoucherUsed) GetLogIndex() uint64
- func (x *VoucherUsed) GetRecurrent() bool
- func (x *VoucherUsed) GetTs() *timestamppb.Timestamp
- func (x *VoucherUsed) GetTxID() []byte
- func (*VoucherUsed) ProtoMessage()
- func (x *VoucherUsed) ProtoReflect() protoreflect.Message
- func (x *VoucherUsed) Reset()
- func (x *VoucherUsed) String() string
Constants ¶
This section is empty.
Variables ¶
View Source
var File_flowcontractaudits_proto protoreflect.FileDescriptor
View Source
var Types = []proto.Message{ &AuditorCreated{}, &VoucherCreated{}, &VoucherUsed{}, &VoucherRemoved{}, }
Functions ¶
This section is empty.
Types ¶
type AuditorCreated ¶
type AuditorCreated struct { Ts *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=ts,proto3" json:"ts,omitempty"` BlockNumber uint64 `protobuf:"varint,2,opt,name=blockNumber,proto3" json:"blockNumber,omitempty"` TxID []byte `protobuf:"bytes,3,opt,name=txID,proto3" json:"txID,omitempty"` LogIndex uint64 `protobuf:"varint,4,opt,name=logIndex,proto3" json:"logIndex,omitempty"` // contains filtered or unexported fields }
func (*AuditorCreated) Descriptor
deprecated
func (*AuditorCreated) Descriptor() ([]byte, []int)
Deprecated: Use AuditorCreated.ProtoReflect.Descriptor instead.
func (*AuditorCreated) GetBlockNumber ¶
func (x *AuditorCreated) GetBlockNumber() uint64
func (*AuditorCreated) GetLogIndex ¶
func (x *AuditorCreated) GetLogIndex() uint64
func (*AuditorCreated) GetTs ¶
func (x *AuditorCreated) GetTs() *timestamppb.Timestamp
func (*AuditorCreated) GetTxID ¶
func (x *AuditorCreated) GetTxID() []byte
func (*AuditorCreated) ProtoMessage ¶
func (*AuditorCreated) ProtoMessage()
func (*AuditorCreated) ProtoReflect ¶
func (x *AuditorCreated) ProtoReflect() protoreflect.Message
func (*AuditorCreated) Reset ¶
func (x *AuditorCreated) Reset()
func (*AuditorCreated) String ¶
func (x *AuditorCreated) String() string
type SmartContract ¶
type SmartContract struct{}
func (SmartContract) Address ¶
func (c SmartContract) Address() string
func (SmartContract) Events ¶
func (c SmartContract) Events() []string
func (SmartContract) Name ¶
func (c SmartContract) Name() string
type VoucherCreated ¶
type VoucherCreated struct { Ts *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=ts,proto3" json:"ts,omitempty"` BlockNumber uint64 `protobuf:"varint,2,opt,name=blockNumber,proto3" json:"blockNumber,omitempty"` TxID []byte `protobuf:"bytes,3,opt,name=txID,proto3" json:"txID,omitempty"` LogIndex uint64 `protobuf:"varint,4,opt,name=logIndex,proto3" json:"logIndex,omitempty"` Address []byte `protobuf:"bytes,5,opt,name=address,proto3" json:"address,omitempty"` Recurrent bool `protobuf:"varint,6,opt,name=recurrent,proto3" json:"recurrent,omitempty"` ExpiryBlockHeight uint64 `protobuf:"varint,7,opt,name=expiryBlockHeight,proto3" json:"expiryBlockHeight,omitempty"` CodeHash string `protobuf:"bytes,8,opt,name=codeHash,proto3" json:"codeHash,omitempty"` // contains filtered or unexported fields }
func (*VoucherCreated) Descriptor
deprecated
func (*VoucherCreated) Descriptor() ([]byte, []int)
Deprecated: Use VoucherCreated.ProtoReflect.Descriptor instead.
func (*VoucherCreated) GetAddress ¶
func (x *VoucherCreated) GetAddress() []byte
func (*VoucherCreated) GetBlockNumber ¶
func (x *VoucherCreated) GetBlockNumber() uint64
func (*VoucherCreated) GetCodeHash ¶
func (x *VoucherCreated) GetCodeHash() string
func (*VoucherCreated) GetExpiryBlockHeight ¶
func (x *VoucherCreated) GetExpiryBlockHeight() uint64
func (*VoucherCreated) GetLogIndex ¶
func (x *VoucherCreated) GetLogIndex() uint64
func (*VoucherCreated) GetRecurrent ¶
func (x *VoucherCreated) GetRecurrent() bool
func (*VoucherCreated) GetTs ¶
func (x *VoucherCreated) GetTs() *timestamppb.Timestamp
func (*VoucherCreated) GetTxID ¶
func (x *VoucherCreated) GetTxID() []byte
func (*VoucherCreated) ProtoMessage ¶
func (*VoucherCreated) ProtoMessage()
func (*VoucherCreated) ProtoReflect ¶
func (x *VoucherCreated) ProtoReflect() protoreflect.Message
func (*VoucherCreated) Reset ¶
func (x *VoucherCreated) Reset()
func (*VoucherCreated) String ¶
func (x *VoucherCreated) String() string
type VoucherRemoved ¶
type VoucherRemoved struct { Ts *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=ts,proto3" json:"ts,omitempty"` BlockNumber uint64 `protobuf:"varint,2,opt,name=blockNumber,proto3" json:"blockNumber,omitempty"` TxID []byte `protobuf:"bytes,3,opt,name=txID,proto3" json:"txID,omitempty"` LogIndex uint64 `protobuf:"varint,4,opt,name=logIndex,proto3" json:"logIndex,omitempty"` Key string `protobuf:"bytes,5,opt,name=key,proto3" json:"key,omitempty"` Recurrent bool `protobuf:"varint,6,opt,name=recurrent,proto3" json:"recurrent,omitempty"` ExpiryBlockHeight uint64 `protobuf:"varint,7,opt,name=expiryBlockHeight,proto3" json:"expiryBlockHeight,omitempty"` // contains filtered or unexported fields }
func (*VoucherRemoved) Descriptor
deprecated
func (*VoucherRemoved) Descriptor() ([]byte, []int)
Deprecated: Use VoucherRemoved.ProtoReflect.Descriptor instead.
func (*VoucherRemoved) GetBlockNumber ¶
func (x *VoucherRemoved) GetBlockNumber() uint64
func (*VoucherRemoved) GetExpiryBlockHeight ¶
func (x *VoucherRemoved) GetExpiryBlockHeight() uint64
func (*VoucherRemoved) GetKey ¶
func (x *VoucherRemoved) GetKey() string
func (*VoucherRemoved) GetLogIndex ¶
func (x *VoucherRemoved) GetLogIndex() uint64
func (*VoucherRemoved) GetRecurrent ¶
func (x *VoucherRemoved) GetRecurrent() bool
func (*VoucherRemoved) GetTs ¶
func (x *VoucherRemoved) GetTs() *timestamppb.Timestamp
func (*VoucherRemoved) GetTxID ¶
func (x *VoucherRemoved) GetTxID() []byte
func (*VoucherRemoved) ProtoMessage ¶
func (*VoucherRemoved) ProtoMessage()
func (*VoucherRemoved) ProtoReflect ¶
func (x *VoucherRemoved) ProtoReflect() protoreflect.Message
func (*VoucherRemoved) Reset ¶
func (x *VoucherRemoved) Reset()
func (*VoucherRemoved) String ¶
func (x *VoucherRemoved) String() string
type VoucherUsed ¶
type VoucherUsed struct { Ts *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=ts,proto3" json:"ts,omitempty"` BlockNumber uint64 `protobuf:"varint,2,opt,name=blockNumber,proto3" json:"blockNumber,omitempty"` TxID []byte `protobuf:"bytes,3,opt,name=txID,proto3" json:"txID,omitempty"` LogIndex uint64 `protobuf:"varint,4,opt,name=logIndex,proto3" json:"logIndex,omitempty"` Address []byte `protobuf:"bytes,5,opt,name=address,proto3" json:"address,omitempty"` Key string `protobuf:"bytes,6,opt,name=key,proto3" json:"key,omitempty"` Recurrent bool `protobuf:"varint,7,opt,name=recurrent,proto3" json:"recurrent,omitempty"` ExpiryBlockHeight uint64 `protobuf:"varint,8,opt,name=expiryBlockHeight,proto3" json:"expiryBlockHeight,omitempty"` // contains filtered or unexported fields }
func (*VoucherUsed) Descriptor
deprecated
func (*VoucherUsed) Descriptor() ([]byte, []int)
Deprecated: Use VoucherUsed.ProtoReflect.Descriptor instead.
func (*VoucherUsed) GetAddress ¶
func (x *VoucherUsed) GetAddress() []byte
func (*VoucherUsed) GetBlockNumber ¶
func (x *VoucherUsed) GetBlockNumber() uint64
func (*VoucherUsed) GetExpiryBlockHeight ¶
func (x *VoucherUsed) GetExpiryBlockHeight() uint64
func (*VoucherUsed) GetKey ¶
func (x *VoucherUsed) GetKey() string
func (*VoucherUsed) GetLogIndex ¶
func (x *VoucherUsed) GetLogIndex() uint64
func (*VoucherUsed) GetRecurrent ¶
func (x *VoucherUsed) GetRecurrent() bool
func (*VoucherUsed) GetTs ¶
func (x *VoucherUsed) GetTs() *timestamppb.Timestamp
func (*VoucherUsed) GetTxID ¶
func (x *VoucherUsed) GetTxID() []byte
func (*VoucherUsed) ProtoMessage ¶
func (*VoucherUsed) ProtoMessage()
func (*VoucherUsed) ProtoReflect ¶
func (x *VoucherUsed) ProtoReflect() protoreflect.Message
func (*VoucherUsed) Reset ¶
func (x *VoucherUsed) Reset()
func (*VoucherUsed) String ¶
func (x *VoucherUsed) String() string
Click to show internal directories.
Click to hide internal directories.