pbaptos

package
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 16, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	MoveTypes_name = map[int32]string{
		0:  "Bool",
		1:  "U8",
		2:  "U64",
		3:  "U128",
		4:  "Address",
		5:  "Signer",
		6:  "Vector",
		7:  "Struct",
		8:  "GenericTypeParam",
		9:  "Reference",
		10: "Unparsable",
	}
	MoveTypes_value = map[string]int32{
		"Bool":             0,
		"U8":               1,
		"U64":              2,
		"U128":             3,
		"Address":          4,
		"Signer":           5,
		"Vector":           6,
		"Struct":           7,
		"GenericTypeParam": 8,
		"Reference":        9,
		"Unparsable":       10,
	}
)

Enum value maps for MoveTypes.

View Source
var (
	MoveAbility_name = map[int32]string{
		0: "COPY",
		1: "DROP",
		2: "STORE",
		3: "KEY",
	}
	MoveAbility_value = map[string]int32{
		"COPY":  0,
		"DROP":  1,
		"STORE": 2,
		"KEY":   3,
	}
)

Enum value maps for MoveAbility.

View Source
var (
	Transaction_TransactionType_name = map[int32]string{
		0: "GENESIS",
		1: "BLOCK_METADATA",
		2: "STATE_CHECKPOINT",
		3: "USER",
	}
	Transaction_TransactionType_value = map[string]int32{
		"GENESIS":          0,
		"BLOCK_METADATA":   1,
		"STATE_CHECKPOINT": 2,
		"USER":             3,
	}
)

Enum value maps for Transaction_TransactionType.

View Source
var (
	WriteSet_WriteSetType_name = map[int32]string{
		0: "SCRIPT_WRITE_SET",
		1: "DIRECT_WRITE_SET",
	}
	WriteSet_WriteSetType_value = map[string]int32{
		"SCRIPT_WRITE_SET": 0,
		"DIRECT_WRITE_SET": 1,
	}
)

Enum value maps for WriteSet_WriteSetType.

View Source
var (
	WriteSetChange_Type_name = map[int32]string{
		0: "DELETE_MODULE",
		1: "DELETE_RESOURCE",
		2: "DELETE_TABLE_ITEM",
		3: "WRITE_MODULE",
		4: "WRITE_RESOURCE",
		5: "WRITE_TABLE_ITEM",
	}
	WriteSetChange_Type_value = map[string]int32{
		"DELETE_MODULE":     0,
		"DELETE_RESOURCE":   1,
		"DELETE_TABLE_ITEM": 2,
		"WRITE_MODULE":      3,
		"WRITE_RESOURCE":    4,
		"WRITE_TABLE_ITEM":  5,
	}
)

Enum value maps for WriteSetChange_Type.

View Source
var (
	TransactionPayload_Type_name = map[int32]string{
		0: "SCRIPT_FUNCTION_PAYLOAD",
		1: "SCRIPT_PAYLOAD",
		2: "MODULE_BUNDLE_PAYLOAD",
		3: "WRITE_SET_PAYLOAD",
	}
	TransactionPayload_Type_value = map[string]int32{
		"SCRIPT_FUNCTION_PAYLOAD": 0,
		"SCRIPT_PAYLOAD":          1,
		"MODULE_BUNDLE_PAYLOAD":   2,
		"WRITE_SET_PAYLOAD":       3,
	}
)

Enum value maps for TransactionPayload_Type.

View Source
var (
	MoveFunction_Visibility_name = map[int32]string{
		0: "PRIVATE",
		1: "PUBLIC",
		2: "FRIEND",
	}
	MoveFunction_Visibility_value = map[string]int32{
		"PRIVATE": 0,
		"PUBLIC":  1,
		"FRIEND":  2,
	}
)

Enum value maps for MoveFunction_Visibility.

View Source
var (
	Signature_Type_name = map[int32]string{
		0: "ED25519",
		1: "MULTI_ED25519",
		2: "MULTI_AGENT",
	}
	Signature_Type_value = map[string]int32{
		"ED25519":       0,
		"MULTI_ED25519": 1,
		"MULTI_AGENT":   2,
	}
)

Enum value maps for Signature_Type.

View Source
var (
	AccountSignature_Type_name = map[int32]string{
		0: "ED25519",
		1: "MULTI_ED25519",
	}
	AccountSignature_Type_value = map[string]int32{
		"ED25519":       0,
		"MULTI_ED25519": 1,
	}
)

Enum value maps for AccountSignature_Type.

View Source
var File_aptos_extractor_v1_extractor_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AccountSignature

type AccountSignature struct {
	Type AccountSignature_Type `protobuf:"varint,1,opt,name=type,proto3,enum=aptos.extractor.v1.AccountSignature_Type" json:"type,omitempty"`
	// Types that are assignable to Signature:
	//	*AccountSignature_Ed25519
	//	*AccountSignature_MultiEd25519
	Signature isAccountSignature_Signature `protobuf_oneof:"signature"`
	// contains filtered or unexported fields
}

func (*AccountSignature) Descriptor deprecated

func (*AccountSignature) Descriptor() ([]byte, []int)

Deprecated: Use AccountSignature.ProtoReflect.Descriptor instead.

func (*AccountSignature) GetEd25519

func (x *AccountSignature) GetEd25519() *Ed25519Signature

func (*AccountSignature) GetMultiEd25519

func (x *AccountSignature) GetMultiEd25519() *MultiEd25519Signature

func (*AccountSignature) GetSignature

func (m *AccountSignature) GetSignature() isAccountSignature_Signature

func (*AccountSignature) GetType

func (*AccountSignature) ProtoMessage

func (*AccountSignature) ProtoMessage()

func (*AccountSignature) ProtoReflect

func (x *AccountSignature) ProtoReflect() protoreflect.Message

func (*AccountSignature) Reset

func (x *AccountSignature) Reset()

func (*AccountSignature) String

func (x *AccountSignature) String() string

type AccountSignature_Ed25519

type AccountSignature_Ed25519 struct {
	Ed25519 *Ed25519Signature `protobuf:"bytes,2,opt,name=ed25519,proto3,oneof"`
}

type AccountSignature_MultiEd25519

type AccountSignature_MultiEd25519 struct {
	MultiEd25519 *MultiEd25519Signature `protobuf:"bytes,3,opt,name=multi_ed25519,json=multiEd25519,proto3,oneof"`
}

type AccountSignature_Type

type AccountSignature_Type int32
const (
	AccountSignature_ED25519       AccountSignature_Type = 0
	AccountSignature_MULTI_ED25519 AccountSignature_Type = 1
)

func (AccountSignature_Type) Descriptor

func (AccountSignature_Type) Enum

func (AccountSignature_Type) EnumDescriptor deprecated

func (AccountSignature_Type) EnumDescriptor() ([]byte, []int)

Deprecated: Use AccountSignature_Type.Descriptor instead.

func (AccountSignature_Type) Number

func (AccountSignature_Type) String

func (x AccountSignature_Type) String() string

func (AccountSignature_Type) Type

type Block

type Block struct {

	// Timestamp represents the timestamp of the `BlockMetadataTransaction` (or `GenesisTransaction` for the genesis block)
	// and every transaction in the `transactions` will have the same `timestamp` as the block.
	Timestamp *timestamp.Timestamp `protobuf:"bytes,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// Height represents the block number and ultimately, is the count of `BlockMetadataTransaction` that happened on the chain.
	Height uint64 `protobuf:"varint,2,opt,name=height,proto3" json:"height,omitempty"`
	// Transactions holds all transactions that happened in the Block, which is transactions that happened starting with (and including)
	// a `BlockMetadataTransaction`, and every other transaction up to (but excluding) the next `BlockMetadataTransaction`
	Transactions []*Transaction `protobuf:"bytes,3,rep,name=transactions,proto3" json:"transactions,omitempty"`
	// contains filtered or unexported fields
}

A block on Aptos holds transactions in chronological order (ordered by a transactions monotonically increasing `version` field) All blocks start with a `BlockMetadataTransaction`, and are followed by zero or more transactions. The next `BlockMetadataTransaction` denotes the end of the current block, and the start of the next one.

The Block `height` is a strictly monotonically increasing count of the number of blocks, and there will never be a gap in the numbers. It is also a unique identifier: there will never be two blocks with the same `height`.

The Genesis Transaction (version 0) is contained within the first block, which has a height of `0`

func (*Block) AsRef

func (b *Block) AsRef() bstream.BlockRef

func (*Block) Descriptor deprecated

func (*Block) Descriptor() ([]byte, []int)

Deprecated: Use Block.ProtoReflect.Descriptor instead.

func (*Block) GetHeight

func (x *Block) GetHeight() uint64

func (*Block) GetTimestamp

func (x *Block) GetTimestamp() *timestamp.Timestamp

func (*Block) GetTransactions

func (x *Block) GetTransactions() []*Transaction

func (*Block) ID

func (b *Block) ID() string

func (*Block) LIBNum

func (b *Block) LIBNum() uint64

func (*Block) Number

func (b *Block) Number() uint64

func (*Block) PreviousID

func (b *Block) PreviousID() string

func (*Block) PreviousNum

func (b *Block) PreviousNum() uint64

func (*Block) ProtoMessage

func (*Block) ProtoMessage()

func (*Block) ProtoReflect

func (x *Block) ProtoReflect() protoreflect.Message

func (*Block) Reset

func (x *Block) Reset()

func (*Block) String

func (x *Block) String() string

func (*Block) Time

func (b *Block) Time() time.Time

type BlockMetadataTransaction

type BlockMetadataTransaction struct {
	Id                       string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Round                    uint64   `protobuf:"varint,2,opt,name=round,proto3" json:"round,omitempty"`
	Events                   []*Event `protobuf:"bytes,3,rep,name=events,proto3" json:"events,omitempty"`
	PreviousBlockVotesBitvec []byte   `` /* 137-byte string literal not displayed */
	Proposer                 string   `protobuf:"bytes,5,opt,name=proposer,proto3" json:"proposer,omitempty"`
	FailedProposerIndices    []uint32 `` /* 134-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*BlockMetadataTransaction) Descriptor deprecated

func (*BlockMetadataTransaction) Descriptor() ([]byte, []int)

Deprecated: Use BlockMetadataTransaction.ProtoReflect.Descriptor instead.

func (*BlockMetadataTransaction) GetEvents

func (x *BlockMetadataTransaction) GetEvents() []*Event

func (*BlockMetadataTransaction) GetFailedProposerIndices

func (x *BlockMetadataTransaction) GetFailedProposerIndices() []uint32

func (*BlockMetadataTransaction) GetId

func (x *BlockMetadataTransaction) GetId() string

func (*BlockMetadataTransaction) GetPreviousBlockVotesBitvec

func (x *BlockMetadataTransaction) GetPreviousBlockVotesBitvec() []byte

func (*BlockMetadataTransaction) GetProposer

func (x *BlockMetadataTransaction) GetProposer() string

func (*BlockMetadataTransaction) GetRound

func (x *BlockMetadataTransaction) GetRound() uint64

func (*BlockMetadataTransaction) ProtoMessage

func (*BlockMetadataTransaction) ProtoMessage()

func (*BlockMetadataTransaction) ProtoReflect

func (x *BlockMetadataTransaction) ProtoReflect() protoreflect.Message

func (*BlockMetadataTransaction) Reset

func (x *BlockMetadataTransaction) Reset()

func (*BlockMetadataTransaction) String

func (x *BlockMetadataTransaction) String() string

type DeleteModule

type DeleteModule struct {
	Address      string        `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	StateKeyHash []byte        `protobuf:"bytes,2,opt,name=state_key_hash,json=stateKeyHash,proto3" json:"state_key_hash,omitempty"`
	Module       *MoveModuleId `protobuf:"bytes,3,opt,name=module,proto3" json:"module,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteModule) Descriptor deprecated

func (*DeleteModule) Descriptor() ([]byte, []int)

Deprecated: Use DeleteModule.ProtoReflect.Descriptor instead.

func (*DeleteModule) GetAddress

func (x *DeleteModule) GetAddress() string

func (*DeleteModule) GetModule

func (x *DeleteModule) GetModule() *MoveModuleId

func (*DeleteModule) GetStateKeyHash

func (x *DeleteModule) GetStateKeyHash() []byte

func (*DeleteModule) ProtoMessage

func (*DeleteModule) ProtoMessage()

func (*DeleteModule) ProtoReflect

func (x *DeleteModule) ProtoReflect() protoreflect.Message

func (*DeleteModule) Reset

func (x *DeleteModule) Reset()

func (*DeleteModule) String

func (x *DeleteModule) String() string

type DeleteResource

type DeleteResource struct {
	Address      string         `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	StateKeyHash []byte         `protobuf:"bytes,2,opt,name=state_key_hash,json=stateKeyHash,proto3" json:"state_key_hash,omitempty"`
	Resource     *MoveStructTag `protobuf:"bytes,3,opt,name=resource,proto3" json:"resource,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteResource) Descriptor deprecated

func (*DeleteResource) Descriptor() ([]byte, []int)

Deprecated: Use DeleteResource.ProtoReflect.Descriptor instead.

func (*DeleteResource) GetAddress

func (x *DeleteResource) GetAddress() string

func (*DeleteResource) GetResource

func (x *DeleteResource) GetResource() *MoveStructTag

func (*DeleteResource) GetStateKeyHash

func (x *DeleteResource) GetStateKeyHash() []byte

func (*DeleteResource) ProtoMessage

func (*DeleteResource) ProtoMessage()

func (*DeleteResource) ProtoReflect

func (x *DeleteResource) ProtoReflect() protoreflect.Message

func (*DeleteResource) Reset

func (x *DeleteResource) Reset()

func (*DeleteResource) String

func (x *DeleteResource) String() string

type DeleteTableData

type DeleteTableData struct {
	Key     string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	KeyType string `protobuf:"bytes,2,opt,name=key_type,json=keyType,proto3" json:"key_type,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteTableData) Descriptor deprecated

func (*DeleteTableData) Descriptor() ([]byte, []int)

Deprecated: Use DeleteTableData.ProtoReflect.Descriptor instead.

func (*DeleteTableData) GetKey

func (x *DeleteTableData) GetKey() string

func (*DeleteTableData) GetKeyType

func (x *DeleteTableData) GetKeyType() string

func (*DeleteTableData) ProtoMessage

func (*DeleteTableData) ProtoMessage()

func (*DeleteTableData) ProtoReflect

func (x *DeleteTableData) ProtoReflect() protoreflect.Message

func (*DeleteTableData) Reset

func (x *DeleteTableData) Reset()

func (*DeleteTableData) String

func (x *DeleteTableData) String() string

type DeleteTableItem

type DeleteTableItem struct {
	StateKeyHash []byte           `protobuf:"bytes,1,opt,name=state_key_hash,json=stateKeyHash,proto3" json:"state_key_hash,omitempty"`
	Handle       string           `protobuf:"bytes,2,opt,name=handle,proto3" json:"handle,omitempty"`
	Key          string           `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	Data         *DeleteTableData `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteTableItem) Descriptor deprecated

func (*DeleteTableItem) Descriptor() ([]byte, []int)

Deprecated: Use DeleteTableItem.ProtoReflect.Descriptor instead.

func (*DeleteTableItem) GetData

func (x *DeleteTableItem) GetData() *DeleteTableData

func (*DeleteTableItem) GetHandle

func (x *DeleteTableItem) GetHandle() string

func (*DeleteTableItem) GetKey

func (x *DeleteTableItem) GetKey() string

func (*DeleteTableItem) GetStateKeyHash

func (x *DeleteTableItem) GetStateKeyHash() []byte

func (*DeleteTableItem) ProtoMessage

func (*DeleteTableItem) ProtoMessage()

func (*DeleteTableItem) ProtoReflect

func (x *DeleteTableItem) ProtoReflect() protoreflect.Message

func (*DeleteTableItem) Reset

func (x *DeleteTableItem) Reset()

func (*DeleteTableItem) String

func (x *DeleteTableItem) String() string

type DirectWriteSet

type DirectWriteSet struct {
	WriteSetChange []*WriteSetChange `protobuf:"bytes,1,rep,name=write_set_change,json=writeSetChange,proto3" json:"write_set_change,omitempty"`
	Events         []*Event          `protobuf:"bytes,2,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*DirectWriteSet) Descriptor deprecated

func (*DirectWriteSet) Descriptor() ([]byte, []int)

Deprecated: Use DirectWriteSet.ProtoReflect.Descriptor instead.

func (*DirectWriteSet) GetEvents

func (x *DirectWriteSet) GetEvents() []*Event

func (*DirectWriteSet) GetWriteSetChange

func (x *DirectWriteSet) GetWriteSetChange() []*WriteSetChange

func (*DirectWriteSet) ProtoMessage

func (*DirectWriteSet) ProtoMessage()

func (*DirectWriteSet) ProtoReflect

func (x *DirectWriteSet) ProtoReflect() protoreflect.Message

func (*DirectWriteSet) Reset

func (x *DirectWriteSet) Reset()

func (*DirectWriteSet) String

func (x *DirectWriteSet) String() string

type Ed25519Signature

type Ed25519Signature struct {
	PublicKey []byte `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`
	Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
	// contains filtered or unexported fields
}

func (*Ed25519Signature) Descriptor deprecated

func (*Ed25519Signature) Descriptor() ([]byte, []int)

Deprecated: Use Ed25519Signature.ProtoReflect.Descriptor instead.

func (*Ed25519Signature) GetPublicKey

func (x *Ed25519Signature) GetPublicKey() []byte

func (*Ed25519Signature) GetSignature

func (x *Ed25519Signature) GetSignature() []byte

func (*Ed25519Signature) ProtoMessage

func (*Ed25519Signature) ProtoMessage()

func (*Ed25519Signature) ProtoReflect

func (x *Ed25519Signature) ProtoReflect() protoreflect.Message

func (*Ed25519Signature) Reset

func (x *Ed25519Signature) Reset()

func (*Ed25519Signature) String

func (x *Ed25519Signature) String() string

type Event

type Event struct {
	Key            *EventKey `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	SequenceNumber uint64    `protobuf:"varint,2,opt,name=sequence_number,json=sequenceNumber,proto3" json:"sequence_number,omitempty"`
	Type           *MoveType `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	Data           string    `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*Event) Descriptor deprecated

func (*Event) Descriptor() ([]byte, []int)

Deprecated: Use Event.ProtoReflect.Descriptor instead.

func (*Event) GetData

func (x *Event) GetData() string

func (*Event) GetKey

func (x *Event) GetKey() *EventKey

func (*Event) GetSequenceNumber

func (x *Event) GetSequenceNumber() uint64

func (*Event) GetType

func (x *Event) GetType() *MoveType

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) ProtoReflect

func (x *Event) ProtoReflect() protoreflect.Message

func (*Event) Reset

func (x *Event) Reset()

func (*Event) String

func (x *Event) String() string

type EventKey

type EventKey struct {
	CreationNumber uint64 `protobuf:"varint,1,opt,name=creation_number,json=creationNumber,proto3" json:"creation_number,omitempty"`
	AccountAddress string `protobuf:"bytes,2,opt,name=account_address,json=accountAddress,proto3" json:"account_address,omitempty"`
	// contains filtered or unexported fields
}

func (*EventKey) Descriptor deprecated

func (*EventKey) Descriptor() ([]byte, []int)

Deprecated: Use EventKey.ProtoReflect.Descriptor instead.

func (*EventKey) GetAccountAddress

func (x *EventKey) GetAccountAddress() string

func (*EventKey) GetCreationNumber

func (x *EventKey) GetCreationNumber() uint64

func (*EventKey) ProtoMessage

func (*EventKey) ProtoMessage()

func (*EventKey) ProtoReflect

func (x *EventKey) ProtoReflect() protoreflect.Message

func (*EventKey) Reset

func (x *EventKey) Reset()

func (*EventKey) String

func (x *EventKey) String() string

type GenesisTransaction

type GenesisTransaction struct {
	Payload *WriteSet `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
	Events  []*Event  `protobuf:"bytes,2,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*GenesisTransaction) Descriptor deprecated

func (*GenesisTransaction) Descriptor() ([]byte, []int)

Deprecated: Use GenesisTransaction.ProtoReflect.Descriptor instead.

func (*GenesisTransaction) GetEvents

func (x *GenesisTransaction) GetEvents() []*Event

func (*GenesisTransaction) GetPayload

func (x *GenesisTransaction) GetPayload() *WriteSet

func (*GenesisTransaction) ProtoMessage

func (*GenesisTransaction) ProtoMessage()

func (*GenesisTransaction) ProtoReflect

func (x *GenesisTransaction) ProtoReflect() protoreflect.Message

func (*GenesisTransaction) Reset

func (x *GenesisTransaction) Reset()

func (*GenesisTransaction) String

func (x *GenesisTransaction) String() string

type ModuleBundlePayload

type ModuleBundlePayload struct {
	Modules []*MoveModuleBytecode `protobuf:"bytes,1,rep,name=modules,proto3" json:"modules,omitempty"`
	// contains filtered or unexported fields
}

func (*ModuleBundlePayload) Descriptor deprecated

func (*ModuleBundlePayload) Descriptor() ([]byte, []int)

Deprecated: Use ModuleBundlePayload.ProtoReflect.Descriptor instead.

func (*ModuleBundlePayload) GetModules

func (x *ModuleBundlePayload) GetModules() []*MoveModuleBytecode

func (*ModuleBundlePayload) ProtoMessage

func (*ModuleBundlePayload) ProtoMessage()

func (*ModuleBundlePayload) ProtoReflect

func (x *ModuleBundlePayload) ProtoReflect() protoreflect.Message

func (*ModuleBundlePayload) Reset

func (x *ModuleBundlePayload) Reset()

func (*ModuleBundlePayload) String

func (x *ModuleBundlePayload) String() string

type MoveAbility

type MoveAbility int32
const (
	MoveAbility_COPY  MoveAbility = 0
	MoveAbility_DROP  MoveAbility = 1
	MoveAbility_STORE MoveAbility = 2
	MoveAbility_KEY   MoveAbility = 3
)

func (MoveAbility) Descriptor

func (MoveAbility) Enum

func (x MoveAbility) Enum() *MoveAbility

func (MoveAbility) EnumDescriptor deprecated

func (MoveAbility) EnumDescriptor() ([]byte, []int)

Deprecated: Use MoveAbility.Descriptor instead.

func (MoveAbility) Number

func (x MoveAbility) Number() protoreflect.EnumNumber

func (MoveAbility) String

func (x MoveAbility) String() string

func (MoveAbility) Type

type MoveFunction

type MoveFunction struct {
	Name              string                          `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Visibility        MoveFunction_Visibility         `protobuf:"varint,2,opt,name=visibility,proto3,enum=aptos.extractor.v1.MoveFunction_Visibility" json:"visibility,omitempty"`
	IsEntry           bool                            `protobuf:"varint,3,opt,name=is_entry,json=isEntry,proto3" json:"is_entry,omitempty"`
	GenericTypeParams []*MoveFunctionGenericTypeParam `protobuf:"bytes,4,rep,name=generic_type_params,json=genericTypeParams,proto3" json:"generic_type_params,omitempty"`
	Params            []*MoveType                     `protobuf:"bytes,5,rep,name=params,proto3" json:"params,omitempty"`
	Return            []*MoveType                     `protobuf:"bytes,6,rep,name=return,proto3" json:"return,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveFunction) Descriptor deprecated

func (*MoveFunction) Descriptor() ([]byte, []int)

Deprecated: Use MoveFunction.ProtoReflect.Descriptor instead.

func (*MoveFunction) GetGenericTypeParams

func (x *MoveFunction) GetGenericTypeParams() []*MoveFunctionGenericTypeParam

func (*MoveFunction) GetIsEntry

func (x *MoveFunction) GetIsEntry() bool

func (*MoveFunction) GetName

func (x *MoveFunction) GetName() string

func (*MoveFunction) GetParams

func (x *MoveFunction) GetParams() []*MoveType

func (*MoveFunction) GetReturn

func (x *MoveFunction) GetReturn() []*MoveType

func (*MoveFunction) GetVisibility

func (x *MoveFunction) GetVisibility() MoveFunction_Visibility

func (*MoveFunction) ProtoMessage

func (*MoveFunction) ProtoMessage()

func (*MoveFunction) ProtoReflect

func (x *MoveFunction) ProtoReflect() protoreflect.Message

func (*MoveFunction) Reset

func (x *MoveFunction) Reset()

func (*MoveFunction) String

func (x *MoveFunction) String() string

type MoveFunctionGenericTypeParam

type MoveFunctionGenericTypeParam struct {
	Constraints []MoveAbility `protobuf:"varint,1,rep,packed,name=constraints,proto3,enum=aptos.extractor.v1.MoveAbility" json:"constraints,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveFunctionGenericTypeParam) Descriptor deprecated

func (*MoveFunctionGenericTypeParam) Descriptor() ([]byte, []int)

Deprecated: Use MoveFunctionGenericTypeParam.ProtoReflect.Descriptor instead.

func (*MoveFunctionGenericTypeParam) GetConstraints

func (x *MoveFunctionGenericTypeParam) GetConstraints() []MoveAbility

func (*MoveFunctionGenericTypeParam) ProtoMessage

func (*MoveFunctionGenericTypeParam) ProtoMessage()

func (*MoveFunctionGenericTypeParam) ProtoReflect

func (*MoveFunctionGenericTypeParam) Reset

func (x *MoveFunctionGenericTypeParam) Reset()

func (*MoveFunctionGenericTypeParam) String

type MoveFunction_Visibility

type MoveFunction_Visibility int32
const (
	MoveFunction_PRIVATE MoveFunction_Visibility = 0
	MoveFunction_PUBLIC  MoveFunction_Visibility = 1
	MoveFunction_FRIEND  MoveFunction_Visibility = 2
)

func (MoveFunction_Visibility) Descriptor

func (MoveFunction_Visibility) Enum

func (MoveFunction_Visibility) EnumDescriptor deprecated

func (MoveFunction_Visibility) EnumDescriptor() ([]byte, []int)

Deprecated: Use MoveFunction_Visibility.Descriptor instead.

func (MoveFunction_Visibility) Number

func (MoveFunction_Visibility) String

func (x MoveFunction_Visibility) String() string

func (MoveFunction_Visibility) Type

type MoveModule

type MoveModule struct {
	Address          string          `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Name             string          `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Friends          []*MoveModuleId `protobuf:"bytes,3,rep,name=friends,proto3" json:"friends,omitempty"`
	ExposedFunctions []*MoveFunction `protobuf:"bytes,4,rep,name=exposed_functions,json=exposedFunctions,proto3" json:"exposed_functions,omitempty"`
	Structs          []*MoveStruct   `protobuf:"bytes,5,rep,name=structs,proto3" json:"structs,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveModule) Descriptor deprecated

func (*MoveModule) Descriptor() ([]byte, []int)

Deprecated: Use MoveModule.ProtoReflect.Descriptor instead.

func (*MoveModule) GetAddress

func (x *MoveModule) GetAddress() string

func (*MoveModule) GetExposedFunctions

func (x *MoveModule) GetExposedFunctions() []*MoveFunction

func (*MoveModule) GetFriends

func (x *MoveModule) GetFriends() []*MoveModuleId

func (*MoveModule) GetName

func (x *MoveModule) GetName() string

func (*MoveModule) GetStructs

func (x *MoveModule) GetStructs() []*MoveStruct

func (*MoveModule) ProtoMessage

func (*MoveModule) ProtoMessage()

func (*MoveModule) ProtoReflect

func (x *MoveModule) ProtoReflect() protoreflect.Message

func (*MoveModule) Reset

func (x *MoveModule) Reset()

func (*MoveModule) String

func (x *MoveModule) String() string

type MoveModuleBytecode

type MoveModuleBytecode struct {
	Bytecode []byte      `protobuf:"bytes,1,opt,name=bytecode,proto3" json:"bytecode,omitempty"`
	Abi      *MoveModule `protobuf:"bytes,2,opt,name=abi,proto3" json:"abi,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveModuleBytecode) Descriptor deprecated

func (*MoveModuleBytecode) Descriptor() ([]byte, []int)

Deprecated: Use MoveModuleBytecode.ProtoReflect.Descriptor instead.

func (*MoveModuleBytecode) GetAbi

func (x *MoveModuleBytecode) GetAbi() *MoveModule

func (*MoveModuleBytecode) GetBytecode

func (x *MoveModuleBytecode) GetBytecode() []byte

func (*MoveModuleBytecode) ProtoMessage

func (*MoveModuleBytecode) ProtoMessage()

func (*MoveModuleBytecode) ProtoReflect

func (x *MoveModuleBytecode) ProtoReflect() protoreflect.Message

func (*MoveModuleBytecode) Reset

func (x *MoveModuleBytecode) Reset()

func (*MoveModuleBytecode) String

func (x *MoveModuleBytecode) String() string

type MoveModuleId

type MoveModuleId struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveModuleId) Descriptor deprecated

func (*MoveModuleId) Descriptor() ([]byte, []int)

Deprecated: Use MoveModuleId.ProtoReflect.Descriptor instead.

func (*MoveModuleId) GetAddress

func (x *MoveModuleId) GetAddress() string

func (*MoveModuleId) GetName

func (x *MoveModuleId) GetName() string

func (*MoveModuleId) ProtoMessage

func (*MoveModuleId) ProtoMessage()

func (*MoveModuleId) ProtoReflect

func (x *MoveModuleId) ProtoReflect() protoreflect.Message

func (*MoveModuleId) Reset

func (x *MoveModuleId) Reset()

func (*MoveModuleId) String

func (x *MoveModuleId) String() string

type MoveResource

type MoveResource struct {
	Type *MoveStructTag `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Data string         `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveResource) Descriptor deprecated

func (*MoveResource) Descriptor() ([]byte, []int)

Deprecated: Use MoveResource.ProtoReflect.Descriptor instead.

func (*MoveResource) GetData

func (x *MoveResource) GetData() string

func (*MoveResource) GetType

func (x *MoveResource) GetType() *MoveStructTag

func (*MoveResource) ProtoMessage

func (*MoveResource) ProtoMessage()

func (*MoveResource) ProtoReflect

func (x *MoveResource) ProtoReflect() protoreflect.Message

func (*MoveResource) Reset

func (x *MoveResource) Reset()

func (*MoveResource) String

func (x *MoveResource) String() string

type MoveScriptBytecode

type MoveScriptBytecode struct {
	Bytecode []byte        `protobuf:"bytes,1,opt,name=bytecode,proto3" json:"bytecode,omitempty"`
	Abi      *MoveFunction `protobuf:"bytes,2,opt,name=abi,proto3" json:"abi,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveScriptBytecode) Descriptor deprecated

func (*MoveScriptBytecode) Descriptor() ([]byte, []int)

Deprecated: Use MoveScriptBytecode.ProtoReflect.Descriptor instead.

func (*MoveScriptBytecode) GetAbi

func (x *MoveScriptBytecode) GetAbi() *MoveFunction

func (*MoveScriptBytecode) GetBytecode

func (x *MoveScriptBytecode) GetBytecode() []byte

func (*MoveScriptBytecode) ProtoMessage

func (*MoveScriptBytecode) ProtoMessage()

func (*MoveScriptBytecode) ProtoReflect

func (x *MoveScriptBytecode) ProtoReflect() protoreflect.Message

func (*MoveScriptBytecode) Reset

func (x *MoveScriptBytecode) Reset()

func (*MoveScriptBytecode) String

func (x *MoveScriptBytecode) String() string

type MoveStruct

type MoveStruct struct {
	Name              string                        `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	IsNative          bool                          `protobuf:"varint,2,opt,name=is_native,json=isNative,proto3" json:"is_native,omitempty"`
	Abilities         []MoveAbility                 `protobuf:"varint,3,rep,packed,name=abilities,proto3,enum=aptos.extractor.v1.MoveAbility" json:"abilities,omitempty"`
	GenericTypeParams []*MoveStructGenericTypeParam `protobuf:"bytes,4,rep,name=generic_type_params,json=genericTypeParams,proto3" json:"generic_type_params,omitempty"`
	Fields            []*MoveStructField            `protobuf:"bytes,5,rep,name=fields,proto3" json:"fields,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveStruct) Descriptor deprecated

func (*MoveStruct) Descriptor() ([]byte, []int)

Deprecated: Use MoveStruct.ProtoReflect.Descriptor instead.

func (*MoveStruct) GetAbilities

func (x *MoveStruct) GetAbilities() []MoveAbility

func (*MoveStruct) GetFields

func (x *MoveStruct) GetFields() []*MoveStructField

func (*MoveStruct) GetGenericTypeParams

func (x *MoveStruct) GetGenericTypeParams() []*MoveStructGenericTypeParam

func (*MoveStruct) GetIsNative

func (x *MoveStruct) GetIsNative() bool

func (*MoveStruct) GetName

func (x *MoveStruct) GetName() string

func (*MoveStruct) ProtoMessage

func (*MoveStruct) ProtoMessage()

func (*MoveStruct) ProtoReflect

func (x *MoveStruct) ProtoReflect() protoreflect.Message

func (*MoveStruct) Reset

func (x *MoveStruct) Reset()

func (*MoveStruct) String

func (x *MoveStruct) String() string

type MoveStructField

type MoveStructField struct {
	Name string    `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type *MoveType `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveStructField) Descriptor deprecated

func (*MoveStructField) Descriptor() ([]byte, []int)

Deprecated: Use MoveStructField.ProtoReflect.Descriptor instead.

func (*MoveStructField) GetName

func (x *MoveStructField) GetName() string

func (*MoveStructField) GetType

func (x *MoveStructField) GetType() *MoveType

func (*MoveStructField) ProtoMessage

func (*MoveStructField) ProtoMessage()

func (*MoveStructField) ProtoReflect

func (x *MoveStructField) ProtoReflect() protoreflect.Message

func (*MoveStructField) Reset

func (x *MoveStructField) Reset()

func (*MoveStructField) String

func (x *MoveStructField) String() string

type MoveStructGenericTypeParam

type MoveStructGenericTypeParam struct {
	Constraints []MoveAbility `protobuf:"varint,1,rep,packed,name=constraints,proto3,enum=aptos.extractor.v1.MoveAbility" json:"constraints,omitempty"`
	IsPhantom   bool          `protobuf:"varint,2,opt,name=is_phantom,json=isPhantom,proto3" json:"is_phantom,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveStructGenericTypeParam) Descriptor deprecated

func (*MoveStructGenericTypeParam) Descriptor() ([]byte, []int)

Deprecated: Use MoveStructGenericTypeParam.ProtoReflect.Descriptor instead.

func (*MoveStructGenericTypeParam) GetConstraints

func (x *MoveStructGenericTypeParam) GetConstraints() []MoveAbility

func (*MoveStructGenericTypeParam) GetIsPhantom

func (x *MoveStructGenericTypeParam) GetIsPhantom() bool

func (*MoveStructGenericTypeParam) ProtoMessage

func (*MoveStructGenericTypeParam) ProtoMessage()

func (*MoveStructGenericTypeParam) ProtoReflect

func (*MoveStructGenericTypeParam) Reset

func (x *MoveStructGenericTypeParam) Reset()

func (*MoveStructGenericTypeParam) String

func (x *MoveStructGenericTypeParam) String() string

type MoveStructTag

type MoveStructTag struct {
	Address           string      `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Module            string      `protobuf:"bytes,2,opt,name=module,proto3" json:"module,omitempty"`
	Name              string      `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	GenericTypeParams []*MoveType `protobuf:"bytes,4,rep,name=generic_type_params,json=genericTypeParams,proto3" json:"generic_type_params,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveStructTag) Descriptor deprecated

func (*MoveStructTag) Descriptor() ([]byte, []int)

Deprecated: Use MoveStructTag.ProtoReflect.Descriptor instead.

func (*MoveStructTag) GetAddress

func (x *MoveStructTag) GetAddress() string

func (*MoveStructTag) GetGenericTypeParams

func (x *MoveStructTag) GetGenericTypeParams() []*MoveType

func (*MoveStructTag) GetModule

func (x *MoveStructTag) GetModule() string

func (*MoveStructTag) GetName

func (x *MoveStructTag) GetName() string

func (*MoveStructTag) ProtoMessage

func (*MoveStructTag) ProtoMessage()

func (*MoveStructTag) ProtoReflect

func (x *MoveStructTag) ProtoReflect() protoreflect.Message

func (*MoveStructTag) Reset

func (x *MoveStructTag) Reset()

func (*MoveStructTag) String

func (x *MoveStructTag) String() string

type MoveType

type MoveType struct {
	Type MoveTypes `protobuf:"varint,1,opt,name=type,proto3,enum=aptos.extractor.v1.MoveTypes" json:"type,omitempty"`
	// Types that are assignable to Content:
	//	*MoveType_Vector
	//	*MoveType_Struct
	//	*MoveType_GenericTypeParamIndex
	//	*MoveType_Reference
	//	*MoveType_Unparsable
	Content isMoveType_Content `protobuf_oneof:"content"`
	// contains filtered or unexported fields
}

func (*MoveType) Descriptor deprecated

func (*MoveType) Descriptor() ([]byte, []int)

Deprecated: Use MoveType.ProtoReflect.Descriptor instead.

func (*MoveType) GetContent

func (m *MoveType) GetContent() isMoveType_Content

func (*MoveType) GetGenericTypeParamIndex

func (x *MoveType) GetGenericTypeParamIndex() uint32

func (*MoveType) GetReference

func (x *MoveType) GetReference() *MoveType_ReferenceType

func (*MoveType) GetStruct

func (x *MoveType) GetStruct() *MoveStructTag

func (*MoveType) GetType

func (x *MoveType) GetType() MoveTypes

func (*MoveType) GetUnparsable

func (x *MoveType) GetUnparsable() string

func (*MoveType) GetVector

func (x *MoveType) GetVector() *MoveType

func (*MoveType) ProtoMessage

func (*MoveType) ProtoMessage()

func (*MoveType) ProtoReflect

func (x *MoveType) ProtoReflect() protoreflect.Message

func (*MoveType) Reset

func (x *MoveType) Reset()

func (*MoveType) String

func (x *MoveType) String() string

type MoveType_GenericTypeParamIndex

type MoveType_GenericTypeParamIndex struct {
	GenericTypeParamIndex uint32 `protobuf:"varint,5,opt,name=generic_type_param_index,json=genericTypeParamIndex,proto3,oneof"`
}

type MoveType_Reference

type MoveType_Reference struct {
	Reference *MoveType_ReferenceType `protobuf:"bytes,6,opt,name=reference,proto3,oneof"`
}

type MoveType_ReferenceType

type MoveType_ReferenceType struct {
	Mutable bool      `protobuf:"varint,1,opt,name=mutable,proto3" json:"mutable,omitempty"`
	To      *MoveType `protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveType_ReferenceType) Descriptor deprecated

func (*MoveType_ReferenceType) Descriptor() ([]byte, []int)

Deprecated: Use MoveType_ReferenceType.ProtoReflect.Descriptor instead.

func (*MoveType_ReferenceType) GetMutable

func (x *MoveType_ReferenceType) GetMutable() bool

func (*MoveType_ReferenceType) GetTo

func (x *MoveType_ReferenceType) GetTo() *MoveType

func (*MoveType_ReferenceType) ProtoMessage

func (*MoveType_ReferenceType) ProtoMessage()

func (*MoveType_ReferenceType) ProtoReflect

func (x *MoveType_ReferenceType) ProtoReflect() protoreflect.Message

func (*MoveType_ReferenceType) Reset

func (x *MoveType_ReferenceType) Reset()

func (*MoveType_ReferenceType) String

func (x *MoveType_ReferenceType) String() string

type MoveType_Struct

type MoveType_Struct struct {
	Struct *MoveStructTag `protobuf:"bytes,4,opt,name=struct,proto3,oneof"`
}

type MoveType_Unparsable

type MoveType_Unparsable struct {
	Unparsable string `protobuf:"bytes,7,opt,name=unparsable,proto3,oneof"`
}

type MoveType_Vector

type MoveType_Vector struct {
	Vector *MoveType `protobuf:"bytes,3,opt,name=vector,proto3,oneof"`
}

type MoveTypes

type MoveTypes int32
const (
	MoveTypes_Bool             MoveTypes = 0
	MoveTypes_U8               MoveTypes = 1
	MoveTypes_U64              MoveTypes = 2
	MoveTypes_U128             MoveTypes = 3
	MoveTypes_Address          MoveTypes = 4
	MoveTypes_Signer           MoveTypes = 5
	MoveTypes_Vector           MoveTypes = 6  // { items: Box<MoveType> },
	MoveTypes_Struct           MoveTypes = 7  //(MoveStructTag),
	MoveTypes_GenericTypeParam MoveTypes = 8  // { index: u16 },
	MoveTypes_Reference        MoveTypes = 9  // { mutable: bool, to: Box<MoveType> },
	MoveTypes_Unparsable       MoveTypes = 10 //(String),
)

func (MoveTypes) Descriptor

func (MoveTypes) Descriptor() protoreflect.EnumDescriptor

func (MoveTypes) Enum

func (x MoveTypes) Enum() *MoveTypes

func (MoveTypes) EnumDescriptor deprecated

func (MoveTypes) EnumDescriptor() ([]byte, []int)

Deprecated: Use MoveTypes.Descriptor instead.

func (MoveTypes) Number

func (x MoveTypes) Number() protoreflect.EnumNumber

func (MoveTypes) String

func (x MoveTypes) String() string

func (MoveTypes) Type

type MultiAgentSignature

type MultiAgentSignature struct {
	Sender                   *AccountSignature   `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	SecondarySignerAddresses []string            `` /* 135-byte string literal not displayed */
	SecondarySigners         []*AccountSignature `protobuf:"bytes,3,rep,name=secondary_signers,json=secondarySigners,proto3" json:"secondary_signers,omitempty"`
	// contains filtered or unexported fields
}

func (*MultiAgentSignature) Descriptor deprecated

func (*MultiAgentSignature) Descriptor() ([]byte, []int)

Deprecated: Use MultiAgentSignature.ProtoReflect.Descriptor instead.

func (*MultiAgentSignature) GetSecondarySignerAddresses

func (x *MultiAgentSignature) GetSecondarySignerAddresses() []string

func (*MultiAgentSignature) GetSecondarySigners

func (x *MultiAgentSignature) GetSecondarySigners() []*AccountSignature

func (*MultiAgentSignature) GetSender

func (x *MultiAgentSignature) GetSender() *AccountSignature

func (*MultiAgentSignature) ProtoMessage

func (*MultiAgentSignature) ProtoMessage()

func (*MultiAgentSignature) ProtoReflect

func (x *MultiAgentSignature) ProtoReflect() protoreflect.Message

func (*MultiAgentSignature) Reset

func (x *MultiAgentSignature) Reset()

func (*MultiAgentSignature) String

func (x *MultiAgentSignature) String() string

type MultiEd25519Signature

type MultiEd25519Signature struct {
	PublicKeys [][]byte `protobuf:"bytes,1,rep,name=public_keys,json=publicKeys,proto3" json:"public_keys,omitempty"`
	Signatures [][]byte `protobuf:"bytes,2,rep,name=signatures,proto3" json:"signatures,omitempty"`
	Threshold  uint32   `protobuf:"varint,3,opt,name=threshold,proto3" json:"threshold,omitempty"`
	Bitmap     []byte   `protobuf:"bytes,4,opt,name=bitmap,proto3" json:"bitmap,omitempty"`
	// contains filtered or unexported fields
}

func (*MultiEd25519Signature) Descriptor deprecated

func (*MultiEd25519Signature) Descriptor() ([]byte, []int)

Deprecated: Use MultiEd25519Signature.ProtoReflect.Descriptor instead.

func (*MultiEd25519Signature) GetBitmap

func (x *MultiEd25519Signature) GetBitmap() []byte

func (*MultiEd25519Signature) GetPublicKeys

func (x *MultiEd25519Signature) GetPublicKeys() [][]byte

func (*MultiEd25519Signature) GetSignatures

func (x *MultiEd25519Signature) GetSignatures() [][]byte

func (*MultiEd25519Signature) GetThreshold

func (x *MultiEd25519Signature) GetThreshold() uint32

func (*MultiEd25519Signature) ProtoMessage

func (*MultiEd25519Signature) ProtoMessage()

func (*MultiEd25519Signature) ProtoReflect

func (x *MultiEd25519Signature) ProtoReflect() protoreflect.Message

func (*MultiEd25519Signature) Reset

func (x *MultiEd25519Signature) Reset()

func (*MultiEd25519Signature) String

func (x *MultiEd25519Signature) String() string

type ScriptFunctionId

type ScriptFunctionId struct {
	Module *MoveModuleId `protobuf:"bytes,1,opt,name=module,proto3" json:"module,omitempty"`
	Name   string        `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ScriptFunctionId) Descriptor deprecated

func (*ScriptFunctionId) Descriptor() ([]byte, []int)

Deprecated: Use ScriptFunctionId.ProtoReflect.Descriptor instead.

func (*ScriptFunctionId) GetModule

func (x *ScriptFunctionId) GetModule() *MoveModuleId

func (*ScriptFunctionId) GetName

func (x *ScriptFunctionId) GetName() string

func (*ScriptFunctionId) ProtoMessage

func (*ScriptFunctionId) ProtoMessage()

func (*ScriptFunctionId) ProtoReflect

func (x *ScriptFunctionId) ProtoReflect() protoreflect.Message

func (*ScriptFunctionId) Reset

func (x *ScriptFunctionId) Reset()

func (*ScriptFunctionId) String

func (x *ScriptFunctionId) String() string

type ScriptFunctionPayload

type ScriptFunctionPayload struct {
	Function      *ScriptFunctionId `protobuf:"bytes,1,opt,name=function,proto3" json:"function,omitempty"`
	TypeArguments []*MoveType       `protobuf:"bytes,2,rep,name=type_arguments,json=typeArguments,proto3" json:"type_arguments,omitempty"`
	Arguments     []string          `protobuf:"bytes,3,rep,name=arguments,proto3" json:"arguments,omitempty"`
	// contains filtered or unexported fields
}

func (*ScriptFunctionPayload) Descriptor deprecated

func (*ScriptFunctionPayload) Descriptor() ([]byte, []int)

Deprecated: Use ScriptFunctionPayload.ProtoReflect.Descriptor instead.

func (*ScriptFunctionPayload) GetArguments

func (x *ScriptFunctionPayload) GetArguments() []string

func (*ScriptFunctionPayload) GetFunction

func (x *ScriptFunctionPayload) GetFunction() *ScriptFunctionId

func (*ScriptFunctionPayload) GetTypeArguments

func (x *ScriptFunctionPayload) GetTypeArguments() []*MoveType

func (*ScriptFunctionPayload) ProtoMessage

func (*ScriptFunctionPayload) ProtoMessage()

func (*ScriptFunctionPayload) ProtoReflect

func (x *ScriptFunctionPayload) ProtoReflect() protoreflect.Message

func (*ScriptFunctionPayload) Reset

func (x *ScriptFunctionPayload) Reset()

func (*ScriptFunctionPayload) String

func (x *ScriptFunctionPayload) String() string

type ScriptPayload

type ScriptPayload struct {
	Code          *MoveScriptBytecode `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	TypeArguments []*MoveType         `protobuf:"bytes,2,rep,name=type_arguments,json=typeArguments,proto3" json:"type_arguments,omitempty"`
	Arguments     []string            `protobuf:"bytes,3,rep,name=arguments,proto3" json:"arguments,omitempty"`
	// contains filtered or unexported fields
}

func (*ScriptPayload) Descriptor deprecated

func (*ScriptPayload) Descriptor() ([]byte, []int)

Deprecated: Use ScriptPayload.ProtoReflect.Descriptor instead.

func (*ScriptPayload) GetArguments

func (x *ScriptPayload) GetArguments() []string

func (*ScriptPayload) GetCode

func (x *ScriptPayload) GetCode() *MoveScriptBytecode

func (*ScriptPayload) GetTypeArguments

func (x *ScriptPayload) GetTypeArguments() []*MoveType

func (*ScriptPayload) ProtoMessage

func (*ScriptPayload) ProtoMessage()

func (*ScriptPayload) ProtoReflect

func (x *ScriptPayload) ProtoReflect() protoreflect.Message

func (*ScriptPayload) Reset

func (x *ScriptPayload) Reset()

func (*ScriptPayload) String

func (x *ScriptPayload) String() string

type ScriptWriteSet

type ScriptWriteSet struct {
	ExecuteAs string         `protobuf:"bytes,1,opt,name=execute_as,json=executeAs,proto3" json:"execute_as,omitempty"`
	Script    *ScriptPayload `protobuf:"bytes,2,opt,name=script,proto3" json:"script,omitempty"`
	// contains filtered or unexported fields
}

func (*ScriptWriteSet) Descriptor deprecated

func (*ScriptWriteSet) Descriptor() ([]byte, []int)

Deprecated: Use ScriptWriteSet.ProtoReflect.Descriptor instead.

func (*ScriptWriteSet) GetExecuteAs

func (x *ScriptWriteSet) GetExecuteAs() string

func (*ScriptWriteSet) GetScript

func (x *ScriptWriteSet) GetScript() *ScriptPayload

func (*ScriptWriteSet) ProtoMessage

func (*ScriptWriteSet) ProtoMessage()

func (*ScriptWriteSet) ProtoReflect

func (x *ScriptWriteSet) ProtoReflect() protoreflect.Message

func (*ScriptWriteSet) Reset

func (x *ScriptWriteSet) Reset()

func (*ScriptWriteSet) String

func (x *ScriptWriteSet) String() string

type Signature

type Signature struct {
	Type Signature_Type `protobuf:"varint,1,opt,name=type,proto3,enum=aptos.extractor.v1.Signature_Type" json:"type,omitempty"`
	// Types that are assignable to Signature:
	//	*Signature_Ed25519
	//	*Signature_MultiEd25519
	//	*Signature_MultiAgent
	Signature isSignature_Signature `protobuf_oneof:"signature"`
	// contains filtered or unexported fields
}

func (*Signature) Descriptor deprecated

func (*Signature) Descriptor() ([]byte, []int)

Deprecated: Use Signature.ProtoReflect.Descriptor instead.

func (*Signature) GetEd25519

func (x *Signature) GetEd25519() *Ed25519Signature

func (*Signature) GetMultiAgent

func (x *Signature) GetMultiAgent() *MultiAgentSignature

func (*Signature) GetMultiEd25519

func (x *Signature) GetMultiEd25519() *MultiEd25519Signature

func (*Signature) GetSignature

func (m *Signature) GetSignature() isSignature_Signature

func (*Signature) GetType

func (x *Signature) GetType() Signature_Type

func (*Signature) ProtoMessage

func (*Signature) ProtoMessage()

func (*Signature) ProtoReflect

func (x *Signature) ProtoReflect() protoreflect.Message

func (*Signature) Reset

func (x *Signature) Reset()

func (*Signature) String

func (x *Signature) String() string

type Signature_Ed25519

type Signature_Ed25519 struct {
	Ed25519 *Ed25519Signature `protobuf:"bytes,2,opt,name=ed25519,proto3,oneof"`
}

type Signature_MultiAgent

type Signature_MultiAgent struct {
	MultiAgent *MultiAgentSignature `protobuf:"bytes,4,opt,name=multi_agent,json=multiAgent,proto3,oneof"`
}

type Signature_MultiEd25519

type Signature_MultiEd25519 struct {
	MultiEd25519 *MultiEd25519Signature `protobuf:"bytes,3,opt,name=multi_ed25519,json=multiEd25519,proto3,oneof"`
}

type Signature_Type

type Signature_Type int32
const (
	Signature_ED25519       Signature_Type = 0
	Signature_MULTI_ED25519 Signature_Type = 1
	Signature_MULTI_AGENT   Signature_Type = 2
)

func (Signature_Type) Descriptor

func (Signature_Type) Enum

func (x Signature_Type) Enum() *Signature_Type

func (Signature_Type) EnumDescriptor deprecated

func (Signature_Type) EnumDescriptor() ([]byte, []int)

Deprecated: Use Signature_Type.Descriptor instead.

func (Signature_Type) Number

func (Signature_Type) String

func (x Signature_Type) String() string

func (Signature_Type) Type

type StateCheckpointTransaction

type StateCheckpointTransaction struct {
	// contains filtered or unexported fields
}

func (*StateCheckpointTransaction) Descriptor deprecated

func (*StateCheckpointTransaction) Descriptor() ([]byte, []int)

Deprecated: Use StateCheckpointTransaction.ProtoReflect.Descriptor instead.

func (*StateCheckpointTransaction) ProtoMessage

func (*StateCheckpointTransaction) ProtoMessage()

func (*StateCheckpointTransaction) ProtoReflect

func (*StateCheckpointTransaction) Reset

func (x *StateCheckpointTransaction) Reset()

func (*StateCheckpointTransaction) String

func (x *StateCheckpointTransaction) String() string

type Transaction

type Transaction struct {
	Timestamp   *timestamp.Timestamp        `protobuf:"bytes,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	Version     uint64                      `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
	Info        *TransactionInfo            `protobuf:"bytes,3,opt,name=info,proto3" json:"info,omitempty"`
	Epoch       uint64                      `protobuf:"varint,4,opt,name=epoch,proto3" json:"epoch,omitempty"`
	BlockHeight uint64                      `protobuf:"varint,5,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	Type        Transaction_TransactionType `protobuf:"varint,6,opt,name=type,proto3,enum=aptos.extractor.v1.Transaction_TransactionType" json:"type,omitempty"`
	// Types that are assignable to TxnData:
	//	*Transaction_BlockMetadata
	//	*Transaction_Genesis
	//	*Transaction_StateCheckpoint
	//	*Transaction_User
	TxnData isTransaction_TxnData `protobuf_oneof:"txn_data"`
	// contains filtered or unexported fields
}

Transaction as it happened on the chain, there are 4 types of transactions: - User Transaction: a user initiated transaction to interact with the chain - Block Metadata Transaction: transactions generated by the chain to group together transactions forming a "block" - State Checkpoint Transaction: transactions generated by the chain so when validator agreed on a particular global state - Genesis Transaction: the first transaction of the chain, with all core contract and validator information baked in

func (*Transaction) Descriptor deprecated

func (*Transaction) Descriptor() ([]byte, []int)

Deprecated: Use Transaction.ProtoReflect.Descriptor instead.

func (*Transaction) GetBlockHeight

func (x *Transaction) GetBlockHeight() uint64

func (*Transaction) GetBlockMetadata

func (x *Transaction) GetBlockMetadata() *BlockMetadataTransaction

func (*Transaction) GetEpoch

func (x *Transaction) GetEpoch() uint64

func (*Transaction) GetGenesis

func (x *Transaction) GetGenesis() *GenesisTransaction

func (*Transaction) GetInfo

func (x *Transaction) GetInfo() *TransactionInfo

func (*Transaction) GetStateCheckpoint

func (x *Transaction) GetStateCheckpoint() *StateCheckpointTransaction

func (*Transaction) GetTimestamp

func (x *Transaction) GetTimestamp() *timestamp.Timestamp

func (*Transaction) GetTxnData

func (m *Transaction) GetTxnData() isTransaction_TxnData

func (*Transaction) GetType

func (*Transaction) GetUser

func (x *Transaction) GetUser() *UserTransaction

func (*Transaction) GetVersion

func (x *Transaction) GetVersion() uint64

func (*Transaction) ID

func (t *Transaction) ID() string

func (*Transaction) IsBlockStartBoundaryType

func (t *Transaction) IsBlockStartBoundaryType() bool

func (*Transaction) ProtoMessage

func (*Transaction) ProtoMessage()

func (*Transaction) ProtoReflect

func (x *Transaction) ProtoReflect() protoreflect.Message

func (*Transaction) Reset

func (x *Transaction) Reset()

func (*Transaction) String

func (x *Transaction) String() string

func (*Transaction) Time

func (t *Transaction) Time() time.Time

type TransactionInfo

type TransactionInfo struct {
	Hash                []byte            `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	StateRootHash       []byte            `protobuf:"bytes,2,opt,name=state_root_hash,json=stateRootHash,proto3" json:"state_root_hash,omitempty"`
	EventRootHash       []byte            `protobuf:"bytes,3,opt,name=event_root_hash,json=eventRootHash,proto3" json:"event_root_hash,omitempty"`
	GasUsed             uint64            `protobuf:"varint,4,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"`
	Success             bool              `protobuf:"varint,5,opt,name=success,proto3" json:"success,omitempty"`
	VmStatus            string            `protobuf:"bytes,6,opt,name=vm_status,json=vmStatus,proto3" json:"vm_status,omitempty"`
	AccumulatorRootHash []byte            `protobuf:"bytes,7,opt,name=accumulator_root_hash,json=accumulatorRootHash,proto3" json:"accumulator_root_hash,omitempty"`
	Changes             []*WriteSetChange `protobuf:"bytes,8,rep,name=changes,proto3" json:"changes,omitempty"`
	// contains filtered or unexported fields
}

func (*TransactionInfo) Descriptor deprecated

func (*TransactionInfo) Descriptor() ([]byte, []int)

Deprecated: Use TransactionInfo.ProtoReflect.Descriptor instead.

func (*TransactionInfo) GetAccumulatorRootHash

func (x *TransactionInfo) GetAccumulatorRootHash() []byte

func (*TransactionInfo) GetChanges

func (x *TransactionInfo) GetChanges() []*WriteSetChange

func (*TransactionInfo) GetEventRootHash

func (x *TransactionInfo) GetEventRootHash() []byte

func (*TransactionInfo) GetGasUsed

func (x *TransactionInfo) GetGasUsed() uint64

func (*TransactionInfo) GetHash

func (x *TransactionInfo) GetHash() []byte

func (*TransactionInfo) GetStateRootHash

func (x *TransactionInfo) GetStateRootHash() []byte

func (*TransactionInfo) GetSuccess

func (x *TransactionInfo) GetSuccess() bool

func (*TransactionInfo) GetVmStatus

func (x *TransactionInfo) GetVmStatus() string

func (*TransactionInfo) ProtoMessage

func (*TransactionInfo) ProtoMessage()

func (*TransactionInfo) ProtoReflect

func (x *TransactionInfo) ProtoReflect() protoreflect.Message

func (*TransactionInfo) Reset

func (x *TransactionInfo) Reset()

func (*TransactionInfo) String

func (x *TransactionInfo) String() string

type TransactionPayload

type TransactionPayload struct {
	Type TransactionPayload_Type `protobuf:"varint,1,opt,name=type,proto3,enum=aptos.extractor.v1.TransactionPayload_Type" json:"type,omitempty"`
	// Types that are assignable to Payload:
	//	*TransactionPayload_ScriptFunctionPayload
	//	*TransactionPayload_ScriptPayload
	//	*TransactionPayload_ModuleBundlePayload
	//	*TransactionPayload_WriteSetPayload
	Payload isTransactionPayload_Payload `protobuf_oneof:"payload"`
	// contains filtered or unexported fields
}

func (*TransactionPayload) Descriptor deprecated

func (*TransactionPayload) Descriptor() ([]byte, []int)

Deprecated: Use TransactionPayload.ProtoReflect.Descriptor instead.

func (*TransactionPayload) GetModuleBundlePayload

func (x *TransactionPayload) GetModuleBundlePayload() *ModuleBundlePayload

func (*TransactionPayload) GetPayload

func (m *TransactionPayload) GetPayload() isTransactionPayload_Payload

func (*TransactionPayload) GetScriptFunctionPayload

func (x *TransactionPayload) GetScriptFunctionPayload() *ScriptFunctionPayload

func (*TransactionPayload) GetScriptPayload

func (x *TransactionPayload) GetScriptPayload() *ScriptPayload

func (*TransactionPayload) GetType

func (*TransactionPayload) GetWriteSetPayload

func (x *TransactionPayload) GetWriteSetPayload() *WriteSetPayload

func (*TransactionPayload) ProtoMessage

func (*TransactionPayload) ProtoMessage()

func (*TransactionPayload) ProtoReflect

func (x *TransactionPayload) ProtoReflect() protoreflect.Message

func (*TransactionPayload) Reset

func (x *TransactionPayload) Reset()

func (*TransactionPayload) String

func (x *TransactionPayload) String() string

type TransactionPayload_ModuleBundlePayload

type TransactionPayload_ModuleBundlePayload struct {
	ModuleBundlePayload *ModuleBundlePayload `protobuf:"bytes,4,opt,name=module_bundle_payload,json=moduleBundlePayload,proto3,oneof"`
}

type TransactionPayload_ScriptFunctionPayload

type TransactionPayload_ScriptFunctionPayload struct {
	ScriptFunctionPayload *ScriptFunctionPayload `protobuf:"bytes,2,opt,name=script_function_payload,json=scriptFunctionPayload,proto3,oneof"`
}

type TransactionPayload_ScriptPayload

type TransactionPayload_ScriptPayload struct {
	ScriptPayload *ScriptPayload `protobuf:"bytes,3,opt,name=script_payload,json=scriptPayload,proto3,oneof"`
}

type TransactionPayload_Type

type TransactionPayload_Type int32
const (
	TransactionPayload_SCRIPT_FUNCTION_PAYLOAD TransactionPayload_Type = 0
	TransactionPayload_SCRIPT_PAYLOAD          TransactionPayload_Type = 1
	TransactionPayload_MODULE_BUNDLE_PAYLOAD   TransactionPayload_Type = 2
	TransactionPayload_WRITE_SET_PAYLOAD       TransactionPayload_Type = 3
)

func (TransactionPayload_Type) Descriptor

func (TransactionPayload_Type) Enum

func (TransactionPayload_Type) EnumDescriptor deprecated

func (TransactionPayload_Type) EnumDescriptor() ([]byte, []int)

Deprecated: Use TransactionPayload_Type.Descriptor instead.

func (TransactionPayload_Type) Number

func (TransactionPayload_Type) String

func (x TransactionPayload_Type) String() string

func (TransactionPayload_Type) Type

type TransactionPayload_WriteSetPayload

type TransactionPayload_WriteSetPayload struct {
	WriteSetPayload *WriteSetPayload `protobuf:"bytes,5,opt,name=write_set_payload,json=writeSetPayload,proto3,oneof"`
}

type TransactionTrimmed

type TransactionTrimmed struct {
	Timestamp *timestamp.Timestamp `protobuf:"bytes,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	Version   uint64               `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

TransactionTrimmed is a real Transaction with most of the fields removed so that we can easily decode only the few fields that we have interest in in certain situations.

func (*TransactionTrimmed) Descriptor deprecated

func (*TransactionTrimmed) Descriptor() ([]byte, []int)

Deprecated: Use TransactionTrimmed.ProtoReflect.Descriptor instead.

func (*TransactionTrimmed) GetTimestamp

func (x *TransactionTrimmed) GetTimestamp() *timestamp.Timestamp

func (*TransactionTrimmed) GetVersion

func (x *TransactionTrimmed) GetVersion() uint64

func (*TransactionTrimmed) ProtoMessage

func (*TransactionTrimmed) ProtoMessage()

func (*TransactionTrimmed) ProtoReflect

func (x *TransactionTrimmed) ProtoReflect() protoreflect.Message

func (*TransactionTrimmed) Reset

func (x *TransactionTrimmed) Reset()

func (*TransactionTrimmed) String

func (x *TransactionTrimmed) String() string

type Transaction_BlockMetadata

type Transaction_BlockMetadata struct {
	BlockMetadata *BlockMetadataTransaction `protobuf:"bytes,7,opt,name=block_metadata,json=blockMetadata,proto3,oneof"`
}

type Transaction_Genesis

type Transaction_Genesis struct {
	Genesis *GenesisTransaction `protobuf:"bytes,8,opt,name=genesis,proto3,oneof"`
}

type Transaction_StateCheckpoint

type Transaction_StateCheckpoint struct {
	StateCheckpoint *StateCheckpointTransaction `protobuf:"bytes,9,opt,name=state_checkpoint,json=stateCheckpoint,proto3,oneof"`
}

type Transaction_TransactionType

type Transaction_TransactionType int32
const (
	Transaction_GENESIS          Transaction_TransactionType = 0
	Transaction_BLOCK_METADATA   Transaction_TransactionType = 1
	Transaction_STATE_CHECKPOINT Transaction_TransactionType = 2
	Transaction_USER             Transaction_TransactionType = 3
)

func (Transaction_TransactionType) Descriptor

func (Transaction_TransactionType) Enum

func (Transaction_TransactionType) EnumDescriptor deprecated

func (Transaction_TransactionType) EnumDescriptor() ([]byte, []int)

Deprecated: Use Transaction_TransactionType.Descriptor instead.

func (Transaction_TransactionType) Number

func (Transaction_TransactionType) String

func (Transaction_TransactionType) Type

type Transaction_User

type Transaction_User struct {
	User *UserTransaction `protobuf:"bytes,10,opt,name=user,proto3,oneof"`
}

type UserTransaction

type UserTransaction struct {
	Request *UserTransactionRequest `protobuf:"bytes,1,opt,name=request,proto3" json:"request,omitempty"`
	Events  []*Event                `protobuf:"bytes,2,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*UserTransaction) Descriptor deprecated

func (*UserTransaction) Descriptor() ([]byte, []int)

Deprecated: Use UserTransaction.ProtoReflect.Descriptor instead.

func (*UserTransaction) GetEvents

func (x *UserTransaction) GetEvents() []*Event

func (*UserTransaction) GetRequest

func (x *UserTransaction) GetRequest() *UserTransactionRequest

func (*UserTransaction) ProtoMessage

func (*UserTransaction) ProtoMessage()

func (*UserTransaction) ProtoReflect

func (x *UserTransaction) ProtoReflect() protoreflect.Message

func (*UserTransaction) Reset

func (x *UserTransaction) Reset()

func (*UserTransaction) String

func (x *UserTransaction) String() string

type UserTransactionRequest

type UserTransactionRequest struct {
	Sender                  string               `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	SequenceNumber          uint64               `protobuf:"varint,2,opt,name=sequence_number,json=sequenceNumber,proto3" json:"sequence_number,omitempty"`
	MaxGasAmount            uint64               `protobuf:"varint,3,opt,name=max_gas_amount,json=maxGasAmount,proto3" json:"max_gas_amount,omitempty"`
	GasUnitPrice            uint64               `protobuf:"varint,4,opt,name=gas_unit_price,json=gasUnitPrice,proto3" json:"gas_unit_price,omitempty"`
	ExpirationTimestampSecs *timestamp.Timestamp `` /* 132-byte string literal not displayed */
	Payload                 *TransactionPayload  `protobuf:"bytes,6,opt,name=payload,proto3" json:"payload,omitempty"`
	Signature               *Signature           `protobuf:"bytes,7,opt,name=signature,proto3" json:"signature,omitempty"`
	// contains filtered or unexported fields
}

func (*UserTransactionRequest) Descriptor deprecated

func (*UserTransactionRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserTransactionRequest.ProtoReflect.Descriptor instead.

func (*UserTransactionRequest) GetExpirationTimestampSecs

func (x *UserTransactionRequest) GetExpirationTimestampSecs() *timestamp.Timestamp

func (*UserTransactionRequest) GetGasUnitPrice

func (x *UserTransactionRequest) GetGasUnitPrice() uint64

func (*UserTransactionRequest) GetMaxGasAmount

func (x *UserTransactionRequest) GetMaxGasAmount() uint64

func (*UserTransactionRequest) GetPayload

func (x *UserTransactionRequest) GetPayload() *TransactionPayload

func (*UserTransactionRequest) GetSender

func (x *UserTransactionRequest) GetSender() string

func (*UserTransactionRequest) GetSequenceNumber

func (x *UserTransactionRequest) GetSequenceNumber() uint64

func (*UserTransactionRequest) GetSignature

func (x *UserTransactionRequest) GetSignature() *Signature

func (*UserTransactionRequest) ProtoMessage

func (*UserTransactionRequest) ProtoMessage()

func (*UserTransactionRequest) ProtoReflect

func (x *UserTransactionRequest) ProtoReflect() protoreflect.Message

func (*UserTransactionRequest) Reset

func (x *UserTransactionRequest) Reset()

func (*UserTransactionRequest) String

func (x *UserTransactionRequest) String() string

type WriteModule

type WriteModule struct {
	Address      string              `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	StateKeyHash []byte              `protobuf:"bytes,2,opt,name=state_key_hash,json=stateKeyHash,proto3" json:"state_key_hash,omitempty"`
	Data         *MoveModuleBytecode `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*WriteModule) Descriptor deprecated

func (*WriteModule) Descriptor() ([]byte, []int)

Deprecated: Use WriteModule.ProtoReflect.Descriptor instead.

func (*WriteModule) GetAddress

func (x *WriteModule) GetAddress() string

func (*WriteModule) GetData

func (x *WriteModule) GetData() *MoveModuleBytecode

func (*WriteModule) GetStateKeyHash

func (x *WriteModule) GetStateKeyHash() []byte

func (*WriteModule) ProtoMessage

func (*WriteModule) ProtoMessage()

func (*WriteModule) ProtoReflect

func (x *WriteModule) ProtoReflect() protoreflect.Message

func (*WriteModule) Reset

func (x *WriteModule) Reset()

func (*WriteModule) String

func (x *WriteModule) String() string

type WriteResource

type WriteResource struct {
	Address      string        `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	StateKeyHash []byte        `protobuf:"bytes,2,opt,name=state_key_hash,json=stateKeyHash,proto3" json:"state_key_hash,omitempty"`
	Data         *MoveResource `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*WriteResource) Descriptor deprecated

func (*WriteResource) Descriptor() ([]byte, []int)

Deprecated: Use WriteResource.ProtoReflect.Descriptor instead.

func (*WriteResource) GetAddress

func (x *WriteResource) GetAddress() string

func (*WriteResource) GetData

func (x *WriteResource) GetData() *MoveResource

func (*WriteResource) GetStateKeyHash

func (x *WriteResource) GetStateKeyHash() []byte

func (*WriteResource) ProtoMessage

func (*WriteResource) ProtoMessage()

func (*WriteResource) ProtoReflect

func (x *WriteResource) ProtoReflect() protoreflect.Message

func (*WriteResource) Reset

func (x *WriteResource) Reset()

func (*WriteResource) String

func (x *WriteResource) String() string

type WriteSet

type WriteSet struct {
	WriteSetType WriteSet_WriteSetType `` /* 146-byte string literal not displayed */
	// Types that are assignable to WriteSet:
	//	*WriteSet_ScriptWriteSet
	//	*WriteSet_DirectWriteSet
	WriteSet isWriteSet_WriteSet `protobuf_oneof:"write_set"`
	// contains filtered or unexported fields
}

func (*WriteSet) Descriptor deprecated

func (*WriteSet) Descriptor() ([]byte, []int)

Deprecated: Use WriteSet.ProtoReflect.Descriptor instead.

func (*WriteSet) GetDirectWriteSet

func (x *WriteSet) GetDirectWriteSet() *DirectWriteSet

func (*WriteSet) GetScriptWriteSet

func (x *WriteSet) GetScriptWriteSet() *ScriptWriteSet

func (*WriteSet) GetWriteSet

func (m *WriteSet) GetWriteSet() isWriteSet_WriteSet

func (*WriteSet) GetWriteSetType

func (x *WriteSet) GetWriteSetType() WriteSet_WriteSetType

func (*WriteSet) ProtoMessage

func (*WriteSet) ProtoMessage()

func (*WriteSet) ProtoReflect

func (x *WriteSet) ProtoReflect() protoreflect.Message

func (*WriteSet) Reset

func (x *WriteSet) Reset()

func (*WriteSet) String

func (x *WriteSet) String() string

type WriteSetChange

type WriteSetChange struct {
	Type WriteSetChange_Type `protobuf:"varint,1,opt,name=type,proto3,enum=aptos.extractor.v1.WriteSetChange_Type" json:"type,omitempty"`
	// Types that are assignable to Change:
	//	*WriteSetChange_DeleteModule
	//	*WriteSetChange_DeleteResource
	//	*WriteSetChange_DeleteTableItem
	//	*WriteSetChange_WriteModule
	//	*WriteSetChange_WriteResource
	//	*WriteSetChange_WriteTableItem
	Change isWriteSetChange_Change `protobuf_oneof:"change"`
	// contains filtered or unexported fields
}

func (*WriteSetChange) Descriptor deprecated

func (*WriteSetChange) Descriptor() ([]byte, []int)

Deprecated: Use WriteSetChange.ProtoReflect.Descriptor instead.

func (*WriteSetChange) GetChange

func (m *WriteSetChange) GetChange() isWriteSetChange_Change

func (*WriteSetChange) GetDeleteModule

func (x *WriteSetChange) GetDeleteModule() *DeleteModule

func (*WriteSetChange) GetDeleteResource

func (x *WriteSetChange) GetDeleteResource() *DeleteResource

func (*WriteSetChange) GetDeleteTableItem

func (x *WriteSetChange) GetDeleteTableItem() *DeleteTableItem

func (*WriteSetChange) GetType

func (x *WriteSetChange) GetType() WriteSetChange_Type

func (*WriteSetChange) GetWriteModule

func (x *WriteSetChange) GetWriteModule() *WriteModule

func (*WriteSetChange) GetWriteResource

func (x *WriteSetChange) GetWriteResource() *WriteResource

func (*WriteSetChange) GetWriteTableItem

func (x *WriteSetChange) GetWriteTableItem() *WriteTableItem

func (*WriteSetChange) ProtoMessage

func (*WriteSetChange) ProtoMessage()

func (*WriteSetChange) ProtoReflect

func (x *WriteSetChange) ProtoReflect() protoreflect.Message

func (*WriteSetChange) Reset

func (x *WriteSetChange) Reset()

func (*WriteSetChange) String

func (x *WriteSetChange) String() string

type WriteSetChange_DeleteModule

type WriteSetChange_DeleteModule struct {
	DeleteModule *DeleteModule `protobuf:"bytes,2,opt,name=delete_module,json=deleteModule,proto3,oneof"`
}

type WriteSetChange_DeleteResource

type WriteSetChange_DeleteResource struct {
	DeleteResource *DeleteResource `protobuf:"bytes,3,opt,name=delete_resource,json=deleteResource,proto3,oneof"`
}

type WriteSetChange_DeleteTableItem

type WriteSetChange_DeleteTableItem struct {
	DeleteTableItem *DeleteTableItem `protobuf:"bytes,4,opt,name=delete_table_item,json=deleteTableItem,proto3,oneof"`
}

type WriteSetChange_Type

type WriteSetChange_Type int32
const (
	WriteSetChange_DELETE_MODULE     WriteSetChange_Type = 0
	WriteSetChange_DELETE_RESOURCE   WriteSetChange_Type = 1
	WriteSetChange_DELETE_TABLE_ITEM WriteSetChange_Type = 2
	WriteSetChange_WRITE_MODULE      WriteSetChange_Type = 3
	WriteSetChange_WRITE_RESOURCE    WriteSetChange_Type = 4
	WriteSetChange_WRITE_TABLE_ITEM  WriteSetChange_Type = 5
)

func (WriteSetChange_Type) Descriptor

func (WriteSetChange_Type) Enum

func (WriteSetChange_Type) EnumDescriptor deprecated

func (WriteSetChange_Type) EnumDescriptor() ([]byte, []int)

Deprecated: Use WriteSetChange_Type.Descriptor instead.

func (WriteSetChange_Type) Number

func (WriteSetChange_Type) String

func (x WriteSetChange_Type) String() string

func (WriteSetChange_Type) Type

type WriteSetChange_WriteModule

type WriteSetChange_WriteModule struct {
	WriteModule *WriteModule `protobuf:"bytes,5,opt,name=write_module,json=writeModule,proto3,oneof"`
}

type WriteSetChange_WriteResource

type WriteSetChange_WriteResource struct {
	WriteResource *WriteResource `protobuf:"bytes,6,opt,name=write_resource,json=writeResource,proto3,oneof"`
}

type WriteSetChange_WriteTableItem

type WriteSetChange_WriteTableItem struct {
	WriteTableItem *WriteTableItem `protobuf:"bytes,7,opt,name=write_table_item,json=writeTableItem,proto3,oneof"`
}

type WriteSetPayload

type WriteSetPayload struct {
	WriteSet *WriteSet `protobuf:"bytes,1,opt,name=write_set,json=writeSet,proto3" json:"write_set,omitempty"`
	// contains filtered or unexported fields
}

func (*WriteSetPayload) Descriptor deprecated

func (*WriteSetPayload) Descriptor() ([]byte, []int)

Deprecated: Use WriteSetPayload.ProtoReflect.Descriptor instead.

func (*WriteSetPayload) GetWriteSet

func (x *WriteSetPayload) GetWriteSet() *WriteSet

func (*WriteSetPayload) ProtoMessage

func (*WriteSetPayload) ProtoMessage()

func (*WriteSetPayload) ProtoReflect

func (x *WriteSetPayload) ProtoReflect() protoreflect.Message

func (*WriteSetPayload) Reset

func (x *WriteSetPayload) Reset()

func (*WriteSetPayload) String

func (x *WriteSetPayload) String() string

type WriteSet_DirectWriteSet

type WriteSet_DirectWriteSet struct {
	DirectWriteSet *DirectWriteSet `protobuf:"bytes,3,opt,name=direct_write_set,json=directWriteSet,proto3,oneof"`
}

type WriteSet_ScriptWriteSet

type WriteSet_ScriptWriteSet struct {
	ScriptWriteSet *ScriptWriteSet `protobuf:"bytes,2,opt,name=script_write_set,json=scriptWriteSet,proto3,oneof"`
}

type WriteSet_WriteSetType

type WriteSet_WriteSetType int32
const (
	WriteSet_SCRIPT_WRITE_SET WriteSet_WriteSetType = 0
	WriteSet_DIRECT_WRITE_SET WriteSet_WriteSetType = 1
)

func (WriteSet_WriteSetType) Descriptor

func (WriteSet_WriteSetType) Enum

func (WriteSet_WriteSetType) EnumDescriptor deprecated

func (WriteSet_WriteSetType) EnumDescriptor() ([]byte, []int)

Deprecated: Use WriteSet_WriteSetType.Descriptor instead.

func (WriteSet_WriteSetType) Number

func (WriteSet_WriteSetType) String

func (x WriteSet_WriteSetType) String() string

func (WriteSet_WriteSetType) Type

type WriteTableData

type WriteTableData struct {
	Key       string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	KeyType   string `protobuf:"bytes,2,opt,name=key_type,json=keyType,proto3" json:"key_type,omitempty"`
	Value     string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	ValueType string `protobuf:"bytes,4,opt,name=value_type,json=valueType,proto3" json:"value_type,omitempty"`
	// contains filtered or unexported fields
}

func (*WriteTableData) Descriptor deprecated

func (*WriteTableData) Descriptor() ([]byte, []int)

Deprecated: Use WriteTableData.ProtoReflect.Descriptor instead.

func (*WriteTableData) GetKey

func (x *WriteTableData) GetKey() string

func (*WriteTableData) GetKeyType

func (x *WriteTableData) GetKeyType() string

func (*WriteTableData) GetValue

func (x *WriteTableData) GetValue() string

func (*WriteTableData) GetValueType

func (x *WriteTableData) GetValueType() string

func (*WriteTableData) ProtoMessage

func (*WriteTableData) ProtoMessage()

func (*WriteTableData) ProtoReflect

func (x *WriteTableData) ProtoReflect() protoreflect.Message

func (*WriteTableData) Reset

func (x *WriteTableData) Reset()

func (*WriteTableData) String

func (x *WriteTableData) String() string

type WriteTableItem

type WriteTableItem struct {
	StateKeyHash []byte          `protobuf:"bytes,1,opt,name=state_key_hash,json=stateKeyHash,proto3" json:"state_key_hash,omitempty"`
	Handle       string          `protobuf:"bytes,2,opt,name=handle,proto3" json:"handle,omitempty"`
	Key          string          `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	Data         *WriteTableData `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*WriteTableItem) Descriptor deprecated

func (*WriteTableItem) Descriptor() ([]byte, []int)

Deprecated: Use WriteTableItem.ProtoReflect.Descriptor instead.

func (*WriteTableItem) GetData

func (x *WriteTableItem) GetData() *WriteTableData

func (*WriteTableItem) GetHandle

func (x *WriteTableItem) GetHandle() string

func (*WriteTableItem) GetKey

func (x *WriteTableItem) GetKey() string

func (*WriteTableItem) GetStateKeyHash

func (x *WriteTableItem) GetStateKeyHash() []byte

func (*WriteTableItem) ProtoMessage

func (*WriteTableItem) ProtoMessage()

func (*WriteTableItem) ProtoReflect

func (x *WriteTableItem) ProtoReflect() protoreflect.Message

func (*WriteTableItem) Reset

func (x *WriteTableItem) Reset()

func (*WriteTableItem) String

func (x *WriteTableItem) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL