plasma_cash

package
v0.0.0-...-0b06f50 Latest Latest
Warning

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

Go to latest
Published: Jun 12, 2020 License: BSD-3-Clause Imports: 5 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var PlasmaCashCoinState_name = map[int32]string{
	0: "DEPOSITED",
	1: "EXITING",
	2: "CHALLENGED",
	3: "EXITED",
}
View Source
var PlasmaCashCoinState_value = map[string]int32{
	"DEPOSITED":  0,
	"EXITING":    1,
	"CHALLENGED": 2,
	"EXITED":     3,
}

Functions

This section is empty.

Types

type DepositRequest

type DepositRequest struct {
	Slot         uint64         `protobuf:"varint,1,opt,name=slot,proto3" json:"slot,omitempty"`
	DepositBlock *types.BigUInt `protobuf:"bytes,2,opt,name=deposit_block,json=depositBlock" json:"deposit_block,omitempty"`
	// For ERC20 this is the number of coins deposited, for ERC721 this is a token ID.
	Denomination *types.BigUInt `protobuf:"bytes,3,opt,name=denomination" json:"denomination,omitempty"`
	// Entity that made the deposit
	From *types.Address `protobuf:"bytes,4,opt,name=from" json:"from,omitempty"`
	// Contract from which the coins originated (i.e. the currency of the coins)
	Contract             *types.Address `protobuf:"bytes,5,opt,name=contract" json:"contract,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

This only originates from the validator

func (*DepositRequest) Descriptor

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

func (*DepositRequest) GetContract

func (m *DepositRequest) GetContract() *types.Address

func (*DepositRequest) GetDenomination

func (m *DepositRequest) GetDenomination() *types.BigUInt

func (*DepositRequest) GetDepositBlock

func (m *DepositRequest) GetDepositBlock() *types.BigUInt

func (*DepositRequest) GetFrom

func (m *DepositRequest) GetFrom() *types.Address

func (*DepositRequest) GetSlot

func (m *DepositRequest) GetSlot() uint64

func (*DepositRequest) ProtoMessage

func (*DepositRequest) ProtoMessage()

func (*DepositRequest) Reset

func (m *DepositRequest) Reset()

func (*DepositRequest) String

func (m *DepositRequest) String() string

func (*DepositRequest) XXX_DiscardUnknown

func (m *DepositRequest) XXX_DiscardUnknown()

func (*DepositRequest) XXX_Marshal

func (m *DepositRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DepositRequest) XXX_Merge

func (dst *DepositRequest) XXX_Merge(src proto.Message)

func (*DepositRequest) XXX_Size

func (m *DepositRequest) XXX_Size() int

func (*DepositRequest) XXX_Unmarshal

func (m *DepositRequest) XXX_Unmarshal(b []byte) error

type DepositResponse

type DepositResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DepositResponse) Descriptor

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

func (*DepositResponse) ProtoMessage

func (*DepositResponse) ProtoMessage()

func (*DepositResponse) Reset

func (m *DepositResponse) Reset()

func (*DepositResponse) String

func (m *DepositResponse) String() string

func (*DepositResponse) XXX_DiscardUnknown

func (m *DepositResponse) XXX_DiscardUnknown()

func (*DepositResponse) XXX_Marshal

func (m *DepositResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DepositResponse) XXX_Merge

func (dst *DepositResponse) XXX_Merge(src proto.Message)

func (*DepositResponse) XXX_Size

func (m *DepositResponse) XXX_Size() int

func (*DepositResponse) XXX_Unmarshal

func (m *DepositResponse) XXX_Unmarshal(b []byte) error

type GetBlockRequest

type GetBlockRequest struct {
	BlockHeight          *types.BigUInt `protobuf:"bytes,1,opt,name=block_height,json=blockHeight" json:"block_height,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*GetBlockRequest) Descriptor

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

func (*GetBlockRequest) GetBlockHeight

func (m *GetBlockRequest) GetBlockHeight() *types.BigUInt

func (*GetBlockRequest) ProtoMessage

func (*GetBlockRequest) ProtoMessage()

func (*GetBlockRequest) Reset

func (m *GetBlockRequest) Reset()

func (*GetBlockRequest) String

func (m *GetBlockRequest) String() string

func (*GetBlockRequest) XXX_DiscardUnknown

func (m *GetBlockRequest) XXX_DiscardUnknown()

func (*GetBlockRequest) XXX_Marshal

func (m *GetBlockRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetBlockRequest) XXX_Merge

func (dst *GetBlockRequest) XXX_Merge(src proto.Message)

func (*GetBlockRequest) XXX_Size

func (m *GetBlockRequest) XXX_Size() int

func (*GetBlockRequest) XXX_Unmarshal

func (m *GetBlockRequest) XXX_Unmarshal(b []byte) error

type GetBlockResponse

type GetBlockResponse struct {
	Block                *PlasmaBlock `protobuf:"bytes,1,opt,name=block" json:"block,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetBlockResponse) Descriptor

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

func (*GetBlockResponse) GetBlock

func (m *GetBlockResponse) GetBlock() *PlasmaBlock

func (*GetBlockResponse) ProtoMessage

func (*GetBlockResponse) ProtoMessage()

func (*GetBlockResponse) Reset

func (m *GetBlockResponse) Reset()

func (*GetBlockResponse) String

func (m *GetBlockResponse) String() string

func (*GetBlockResponse) XXX_DiscardUnknown

func (m *GetBlockResponse) XXX_DiscardUnknown()

func (*GetBlockResponse) XXX_Marshal

func (m *GetBlockResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetBlockResponse) XXX_Merge

func (dst *GetBlockResponse) XXX_Merge(src proto.Message)

func (*GetBlockResponse) XXX_Size

func (m *GetBlockResponse) XXX_Size() int

func (*GetBlockResponse) XXX_Unmarshal

func (m *GetBlockResponse) XXX_Unmarshal(b []byte) error

type GetCurrentBlockRequest

type GetCurrentBlockRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetCurrentBlockRequest) Descriptor

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

func (*GetCurrentBlockRequest) ProtoMessage

func (*GetCurrentBlockRequest) ProtoMessage()

func (*GetCurrentBlockRequest) Reset

func (m *GetCurrentBlockRequest) Reset()

func (*GetCurrentBlockRequest) String

func (m *GetCurrentBlockRequest) String() string

func (*GetCurrentBlockRequest) XXX_DiscardUnknown

func (m *GetCurrentBlockRequest) XXX_DiscardUnknown()

func (*GetCurrentBlockRequest) XXX_Marshal

func (m *GetCurrentBlockRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCurrentBlockRequest) XXX_Merge

func (dst *GetCurrentBlockRequest) XXX_Merge(src proto.Message)

func (*GetCurrentBlockRequest) XXX_Size

func (m *GetCurrentBlockRequest) XXX_Size() int

func (*GetCurrentBlockRequest) XXX_Unmarshal

func (m *GetCurrentBlockRequest) XXX_Unmarshal(b []byte) error

type GetCurrentBlockResponse

type GetCurrentBlockResponse struct {
	BlockHeight          *types.BigUInt `protobuf:"bytes,1,opt,name=block_height,json=blockHeight" json:"block_height,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*GetCurrentBlockResponse) Descriptor

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

func (*GetCurrentBlockResponse) GetBlockHeight

func (m *GetCurrentBlockResponse) GetBlockHeight() *types.BigUInt

func (*GetCurrentBlockResponse) ProtoMessage

func (*GetCurrentBlockResponse) ProtoMessage()

func (*GetCurrentBlockResponse) Reset

func (m *GetCurrentBlockResponse) Reset()

func (*GetCurrentBlockResponse) String

func (m *GetCurrentBlockResponse) String() string

func (*GetCurrentBlockResponse) XXX_DiscardUnknown

func (m *GetCurrentBlockResponse) XXX_DiscardUnknown()

func (*GetCurrentBlockResponse) XXX_Marshal

func (m *GetCurrentBlockResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetCurrentBlockResponse) XXX_Merge

func (dst *GetCurrentBlockResponse) XXX_Merge(src proto.Message)

func (*GetCurrentBlockResponse) XXX_Size

func (m *GetCurrentBlockResponse) XXX_Size() int

func (*GetCurrentBlockResponse) XXX_Unmarshal

func (m *GetCurrentBlockResponse) XXX_Unmarshal(b []byte) error

type GetPendingTxsRequest

type GetPendingTxsRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetPendingTxsRequest) Descriptor

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

func (*GetPendingTxsRequest) ProtoMessage

func (*GetPendingTxsRequest) ProtoMessage()

func (*GetPendingTxsRequest) Reset

func (m *GetPendingTxsRequest) Reset()

func (*GetPendingTxsRequest) String

func (m *GetPendingTxsRequest) String() string

func (*GetPendingTxsRequest) XXX_DiscardUnknown

func (m *GetPendingTxsRequest) XXX_DiscardUnknown()

func (*GetPendingTxsRequest) XXX_Marshal

func (m *GetPendingTxsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetPendingTxsRequest) XXX_Merge

func (dst *GetPendingTxsRequest) XXX_Merge(src proto.Message)

func (*GetPendingTxsRequest) XXX_Size

func (m *GetPendingTxsRequest) XXX_Size() int

func (*GetPendingTxsRequest) XXX_Unmarshal

func (m *GetPendingTxsRequest) XXX_Unmarshal(b []byte) error

type GetPlasmaTxRequest

type GetPlasmaTxRequest struct {
	Slot                 uint64         `protobuf:"varint,1,opt,name=slot,proto3" json:"slot,omitempty"`
	BlockHeight          *types.BigUInt `protobuf:"bytes,2,opt,name=block_height,json=blockHeight" json:"block_height,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*GetPlasmaTxRequest) Descriptor

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

func (*GetPlasmaTxRequest) GetBlockHeight

func (m *GetPlasmaTxRequest) GetBlockHeight() *types.BigUInt

func (*GetPlasmaTxRequest) GetSlot

func (m *GetPlasmaTxRequest) GetSlot() uint64

func (*GetPlasmaTxRequest) ProtoMessage

func (*GetPlasmaTxRequest) ProtoMessage()

func (*GetPlasmaTxRequest) Reset

func (m *GetPlasmaTxRequest) Reset()

func (*GetPlasmaTxRequest) String

func (m *GetPlasmaTxRequest) String() string

func (*GetPlasmaTxRequest) XXX_DiscardUnknown

func (m *GetPlasmaTxRequest) XXX_DiscardUnknown()

func (*GetPlasmaTxRequest) XXX_Marshal

func (m *GetPlasmaTxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetPlasmaTxRequest) XXX_Merge

func (dst *GetPlasmaTxRequest) XXX_Merge(src proto.Message)

func (*GetPlasmaTxRequest) XXX_Size

func (m *GetPlasmaTxRequest) XXX_Size() int

func (*GetPlasmaTxRequest) XXX_Unmarshal

func (m *GetPlasmaTxRequest) XXX_Unmarshal(b []byte) error

type GetPlasmaTxResponse

type GetPlasmaTxResponse struct {
	Plasmatx             *PlasmaTx `protobuf:"bytes,1,opt,name=plasmatx" json:"plasmatx,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*GetPlasmaTxResponse) Descriptor

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

func (*GetPlasmaTxResponse) GetPlasmatx

func (m *GetPlasmaTxResponse) GetPlasmatx() *PlasmaTx

func (*GetPlasmaTxResponse) ProtoMessage

func (*GetPlasmaTxResponse) ProtoMessage()

func (*GetPlasmaTxResponse) Reset

func (m *GetPlasmaTxResponse) Reset()

func (*GetPlasmaTxResponse) String

func (m *GetPlasmaTxResponse) String() string

func (*GetPlasmaTxResponse) XXX_DiscardUnknown

func (m *GetPlasmaTxResponse) XXX_DiscardUnknown()

func (*GetPlasmaTxResponse) XXX_Marshal

func (m *GetPlasmaTxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetPlasmaTxResponse) XXX_Merge

func (dst *GetPlasmaTxResponse) XXX_Merge(src proto.Message)

func (*GetPlasmaTxResponse) XXX_Size

func (m *GetPlasmaTxResponse) XXX_Size() int

func (*GetPlasmaTxResponse) XXX_Unmarshal

func (m *GetPlasmaTxResponse) XXX_Unmarshal(b []byte) error

type GetUserSlotsRequest

type GetUserSlotsRequest struct {
	From                 *types.Address `protobuf:"bytes,1,opt,name=from" json:"from,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*GetUserSlotsRequest) Descriptor

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

func (*GetUserSlotsRequest) GetFrom

func (m *GetUserSlotsRequest) GetFrom() *types.Address

func (*GetUserSlotsRequest) ProtoMessage

func (*GetUserSlotsRequest) ProtoMessage()

func (*GetUserSlotsRequest) Reset

func (m *GetUserSlotsRequest) Reset()

func (*GetUserSlotsRequest) String

func (m *GetUserSlotsRequest) String() string

func (*GetUserSlotsRequest) XXX_DiscardUnknown

func (m *GetUserSlotsRequest) XXX_DiscardUnknown()

func (*GetUserSlotsRequest) XXX_Marshal

func (m *GetUserSlotsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetUserSlotsRequest) XXX_Merge

func (dst *GetUserSlotsRequest) XXX_Merge(src proto.Message)

func (*GetUserSlotsRequest) XXX_Size

func (m *GetUserSlotsRequest) XXX_Size() int

func (*GetUserSlotsRequest) XXX_Unmarshal

func (m *GetUserSlotsRequest) XXX_Unmarshal(b []byte) error

type GetUserSlotsResponse

type GetUserSlotsResponse struct {
	Slots                []uint64 `protobuf:"varint,1,rep,packed,name=slots" json:"slots,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetUserSlotsResponse) Descriptor

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

func (*GetUserSlotsResponse) GetSlots

func (m *GetUserSlotsResponse) GetSlots() []uint64

func (*GetUserSlotsResponse) ProtoMessage

func (*GetUserSlotsResponse) ProtoMessage()

func (*GetUserSlotsResponse) Reset

func (m *GetUserSlotsResponse) Reset()

func (*GetUserSlotsResponse) String

func (m *GetUserSlotsResponse) String() string

func (*GetUserSlotsResponse) XXX_DiscardUnknown

func (m *GetUserSlotsResponse) XXX_DiscardUnknown()

func (*GetUserSlotsResponse) XXX_Marshal

func (m *GetUserSlotsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetUserSlotsResponse) XXX_Merge

func (dst *GetUserSlotsResponse) XXX_Merge(src proto.Message)

func (*GetUserSlotsResponse) XXX_Size

func (m *GetUserSlotsResponse) XXX_Size() int

func (*GetUserSlotsResponse) XXX_Unmarshal

func (m *GetUserSlotsResponse) XXX_Unmarshal(b []byte) error

type PendingTxs

type PendingTxs struct {
	Transactions         []*PlasmaTx `protobuf:"bytes,1,rep,name=transactions" json:"transactions,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*PendingTxs) Descriptor

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

func (*PendingTxs) GetTransactions

func (m *PendingTxs) GetTransactions() []*PlasmaTx

func (*PendingTxs) ProtoMessage

func (*PendingTxs) ProtoMessage()

func (*PendingTxs) Reset

func (m *PendingTxs) Reset()

func (*PendingTxs) String

func (m *PendingTxs) String() string

func (*PendingTxs) XXX_DiscardUnknown

func (m *PendingTxs) XXX_DiscardUnknown()

func (*PendingTxs) XXX_Marshal

func (m *PendingTxs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PendingTxs) XXX_Merge

func (dst *PendingTxs) XXX_Merge(src proto.Message)

func (*PendingTxs) XXX_Size

func (m *PendingTxs) XXX_Size() int

func (*PendingTxs) XXX_Unmarshal

func (m *PendingTxs) XXX_Unmarshal(b []byte) error

type PlasmaBlock

type PlasmaBlock struct {
	Uid                  *types.BigUInt `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
	Transactions         []*PlasmaTx    `protobuf:"bytes,2,rep,name=transactions" json:"transactions,omitempty"`
	Signature            []byte         `protobuf:"bytes,3,opt,name=signature,proto3" json:"signature,omitempty"`
	MerkleHash           []byte         `protobuf:"bytes,4,opt,name=merkle_hash,json=merkleHash,proto3" json:"merkle_hash,omitempty"`
	Hash                 []byte         `protobuf:"bytes,5,opt,name=hash,proto3" json:"hash,omitempty"`
	Proof                []byte         `protobuf:"bytes,6,opt,name=proof,proto3" json:"proof,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaBlock) Descriptor

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

func (*PlasmaBlock) GetHash

func (m *PlasmaBlock) GetHash() []byte

func (*PlasmaBlock) GetMerkleHash

func (m *PlasmaBlock) GetMerkleHash() []byte

func (*PlasmaBlock) GetProof

func (m *PlasmaBlock) GetProof() []byte

func (*PlasmaBlock) GetSignature

func (m *PlasmaBlock) GetSignature() []byte

func (*PlasmaBlock) GetTransactions

func (m *PlasmaBlock) GetTransactions() []*PlasmaTx

func (*PlasmaBlock) GetUid

func (m *PlasmaBlock) GetUid() *types.BigUInt

func (*PlasmaBlock) ProtoMessage

func (*PlasmaBlock) ProtoMessage()

func (*PlasmaBlock) Reset

func (m *PlasmaBlock) Reset()

func (*PlasmaBlock) String

func (m *PlasmaBlock) String() string

func (*PlasmaBlock) XXX_DiscardUnknown

func (m *PlasmaBlock) XXX_DiscardUnknown()

func (*PlasmaBlock) XXX_Marshal

func (m *PlasmaBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaBlock) XXX_Merge

func (dst *PlasmaBlock) XXX_Merge(src proto.Message)

func (*PlasmaBlock) XXX_Size

func (m *PlasmaBlock) XXX_Size() int

func (*PlasmaBlock) XXX_Unmarshal

func (m *PlasmaBlock) XXX_Unmarshal(b []byte) error

type PlasmaBookKeeping

type PlasmaBookKeeping struct {
	CurrentHeight        *types.BigUInt `protobuf:"bytes,1,opt,name=current_height,json=currentHeight" json:"current_height,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaBookKeeping) Descriptor

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

func (*PlasmaBookKeeping) GetCurrentHeight

func (m *PlasmaBookKeeping) GetCurrentHeight() *types.BigUInt

func (*PlasmaBookKeeping) ProtoMessage

func (*PlasmaBookKeeping) ProtoMessage()

func (*PlasmaBookKeeping) Reset

func (m *PlasmaBookKeeping) Reset()

func (*PlasmaBookKeeping) String

func (m *PlasmaBookKeeping) String() string

func (*PlasmaBookKeeping) XXX_DiscardUnknown

func (m *PlasmaBookKeeping) XXX_DiscardUnknown()

func (*PlasmaBookKeeping) XXX_Marshal

func (m *PlasmaBookKeeping) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaBookKeeping) XXX_Merge

func (dst *PlasmaBookKeeping) XXX_Merge(src proto.Message)

func (*PlasmaBookKeeping) XXX_Size

func (m *PlasmaBookKeeping) XXX_Size() int

func (*PlasmaBookKeeping) XXX_Unmarshal

func (m *PlasmaBookKeeping) XXX_Unmarshal(b []byte) error

type PlasmaCashAccount

type PlasmaCashAccount struct {
	Owner *types.Address `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	// Plasma coins in this account, identified by their slot number.
	Slots                []uint64 `protobuf:"varint,3,rep,packed,name=slots" json:"slots,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PlasmaCashAccount) Descriptor

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

func (*PlasmaCashAccount) GetOwner

func (m *PlasmaCashAccount) GetOwner() *types.Address

func (*PlasmaCashAccount) GetSlots

func (m *PlasmaCashAccount) GetSlots() []uint64

func (*PlasmaCashAccount) ProtoMessage

func (*PlasmaCashAccount) ProtoMessage()

func (*PlasmaCashAccount) Reset

func (m *PlasmaCashAccount) Reset()

func (*PlasmaCashAccount) String

func (m *PlasmaCashAccount) String() string

func (*PlasmaCashAccount) XXX_DiscardUnknown

func (m *PlasmaCashAccount) XXX_DiscardUnknown()

func (*PlasmaCashAccount) XXX_Marshal

func (m *PlasmaCashAccount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashAccount) XXX_Merge

func (dst *PlasmaCashAccount) XXX_Merge(src proto.Message)

func (*PlasmaCashAccount) XXX_Size

func (m *PlasmaCashAccount) XXX_Size() int

func (*PlasmaCashAccount) XXX_Unmarshal

func (m *PlasmaCashAccount) XXX_Unmarshal(b []byte) error

type PlasmaCashBalanceOfRequest

type PlasmaCashBalanceOfRequest struct {
	Owner                *types.Address `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	Contract             *types.Address `protobuf:"bytes,2,opt,name=contract" json:"contract,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaCashBalanceOfRequest) Descriptor

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

func (*PlasmaCashBalanceOfRequest) GetContract

func (m *PlasmaCashBalanceOfRequest) GetContract() *types.Address

func (*PlasmaCashBalanceOfRequest) GetOwner

func (m *PlasmaCashBalanceOfRequest) GetOwner() *types.Address

func (*PlasmaCashBalanceOfRequest) ProtoMessage

func (*PlasmaCashBalanceOfRequest) ProtoMessage()

func (*PlasmaCashBalanceOfRequest) Reset

func (m *PlasmaCashBalanceOfRequest) Reset()

func (*PlasmaCashBalanceOfRequest) String

func (m *PlasmaCashBalanceOfRequest) String() string

func (*PlasmaCashBalanceOfRequest) XXX_DiscardUnknown

func (m *PlasmaCashBalanceOfRequest) XXX_DiscardUnknown()

func (*PlasmaCashBalanceOfRequest) XXX_Marshal

func (m *PlasmaCashBalanceOfRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashBalanceOfRequest) XXX_Merge

func (dst *PlasmaCashBalanceOfRequest) XXX_Merge(src proto.Message)

func (*PlasmaCashBalanceOfRequest) XXX_Size

func (m *PlasmaCashBalanceOfRequest) XXX_Size() int

func (*PlasmaCashBalanceOfRequest) XXX_Unmarshal

func (m *PlasmaCashBalanceOfRequest) XXX_Unmarshal(b []byte) error

type PlasmaCashBalanceOfResponse

type PlasmaCashBalanceOfResponse struct {
	Coins                []*PlasmaCashCoin `protobuf:"bytes,1,rep,name=coins" json:"coins,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*PlasmaCashBalanceOfResponse) Descriptor

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

func (*PlasmaCashBalanceOfResponse) GetCoins

func (*PlasmaCashBalanceOfResponse) ProtoMessage

func (*PlasmaCashBalanceOfResponse) ProtoMessage()

func (*PlasmaCashBalanceOfResponse) Reset

func (m *PlasmaCashBalanceOfResponse) Reset()

func (*PlasmaCashBalanceOfResponse) String

func (m *PlasmaCashBalanceOfResponse) String() string

func (*PlasmaCashBalanceOfResponse) XXX_DiscardUnknown

func (m *PlasmaCashBalanceOfResponse) XXX_DiscardUnknown()

func (*PlasmaCashBalanceOfResponse) XXX_Marshal

func (m *PlasmaCashBalanceOfResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashBalanceOfResponse) XXX_Merge

func (dst *PlasmaCashBalanceOfResponse) XXX_Merge(src proto.Message)

func (*PlasmaCashBalanceOfResponse) XXX_Size

func (m *PlasmaCashBalanceOfResponse) XXX_Size() int

func (*PlasmaCashBalanceOfResponse) XXX_Unmarshal

func (m *PlasmaCashBalanceOfResponse) XXX_Unmarshal(b []byte) error

type PlasmaCashCoin

type PlasmaCashCoin struct {
	// Unique ID
	Slot  uint64              `protobuf:"varint,1,opt,name=slot,proto3" json:"slot,omitempty"`
	State PlasmaCashCoinState `protobuf:"varint,2,opt,name=state,proto3,enum=PlasmaCashCoinState" json:"state,omitempty"`
	// ERC721 token ID
	Token *types.BigUInt `protobuf:"bytes,3,opt,name=token" json:"token,omitempty"`
	// ERC721 token contract address
	Contract             *types.Address `protobuf:"bytes,4,opt,name=contract" json:"contract,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

Plasma Cash coin holds a single ERC721 token

func (*PlasmaCashCoin) Descriptor

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

func (*PlasmaCashCoin) GetContract

func (m *PlasmaCashCoin) GetContract() *types.Address

func (*PlasmaCashCoin) GetSlot

func (m *PlasmaCashCoin) GetSlot() uint64

func (*PlasmaCashCoin) GetState

func (m *PlasmaCashCoin) GetState() PlasmaCashCoinState

func (*PlasmaCashCoin) GetToken

func (m *PlasmaCashCoin) GetToken() *types.BigUInt

func (*PlasmaCashCoin) ProtoMessage

func (*PlasmaCashCoin) ProtoMessage()

func (*PlasmaCashCoin) Reset

func (m *PlasmaCashCoin) Reset()

func (*PlasmaCashCoin) String

func (m *PlasmaCashCoin) String() string

func (*PlasmaCashCoin) XXX_DiscardUnknown

func (m *PlasmaCashCoin) XXX_DiscardUnknown()

func (*PlasmaCashCoin) XXX_Marshal

func (m *PlasmaCashCoin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashCoin) XXX_Merge

func (dst *PlasmaCashCoin) XXX_Merge(src proto.Message)

func (*PlasmaCashCoin) XXX_Size

func (m *PlasmaCashCoin) XXX_Size() int

func (*PlasmaCashCoin) XXX_Unmarshal

func (m *PlasmaCashCoin) XXX_Unmarshal(b []byte) error

type PlasmaCashCoinResetEvent

type PlasmaCashCoinResetEvent struct {
	Owner                *types.Address       `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	Slot                 uint64               `protobuf:"varint,2,opt,name=slot,proto3" json:"slot,omitempty"`
	Meta                 *PlasmaCashEventMeta `protobuf:"bytes,3,opt,name=meta" json:"meta,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PlasmaCashCoinResetEvent) Descriptor

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

func (*PlasmaCashCoinResetEvent) GetMeta

func (*PlasmaCashCoinResetEvent) GetOwner

func (m *PlasmaCashCoinResetEvent) GetOwner() *types.Address

func (*PlasmaCashCoinResetEvent) GetSlot

func (m *PlasmaCashCoinResetEvent) GetSlot() uint64

func (*PlasmaCashCoinResetEvent) ProtoMessage

func (*PlasmaCashCoinResetEvent) ProtoMessage()

func (*PlasmaCashCoinResetEvent) Reset

func (m *PlasmaCashCoinResetEvent) Reset()

func (*PlasmaCashCoinResetEvent) String

func (m *PlasmaCashCoinResetEvent) String() string

func (*PlasmaCashCoinResetEvent) XXX_DiscardUnknown

func (m *PlasmaCashCoinResetEvent) XXX_DiscardUnknown()

func (*PlasmaCashCoinResetEvent) XXX_Marshal

func (m *PlasmaCashCoinResetEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashCoinResetEvent) XXX_Merge

func (dst *PlasmaCashCoinResetEvent) XXX_Merge(src proto.Message)

func (*PlasmaCashCoinResetEvent) XXX_Size

func (m *PlasmaCashCoinResetEvent) XXX_Size() int

func (*PlasmaCashCoinResetEvent) XXX_Unmarshal

func (m *PlasmaCashCoinResetEvent) XXX_Unmarshal(b []byte) error

type PlasmaCashCoinResetRequest

type PlasmaCashCoinResetRequest struct {
	Owner                *types.Address `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	Slot                 uint64         `protobuf:"varint,2,opt,name=slot,proto3" json:"slot,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaCashCoinResetRequest) Descriptor

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

func (*PlasmaCashCoinResetRequest) GetOwner

func (m *PlasmaCashCoinResetRequest) GetOwner() *types.Address

func (*PlasmaCashCoinResetRequest) GetSlot

func (m *PlasmaCashCoinResetRequest) GetSlot() uint64

func (*PlasmaCashCoinResetRequest) ProtoMessage

func (*PlasmaCashCoinResetRequest) ProtoMessage()

func (*PlasmaCashCoinResetRequest) Reset

func (m *PlasmaCashCoinResetRequest) Reset()

func (*PlasmaCashCoinResetRequest) String

func (m *PlasmaCashCoinResetRequest) String() string

func (*PlasmaCashCoinResetRequest) XXX_DiscardUnknown

func (m *PlasmaCashCoinResetRequest) XXX_DiscardUnknown()

func (*PlasmaCashCoinResetRequest) XXX_Marshal

func (m *PlasmaCashCoinResetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashCoinResetRequest) XXX_Merge

func (dst *PlasmaCashCoinResetRequest) XXX_Merge(src proto.Message)

func (*PlasmaCashCoinResetRequest) XXX_Size

func (m *PlasmaCashCoinResetRequest) XXX_Size() int

func (*PlasmaCashCoinResetRequest) XXX_Unmarshal

func (m *PlasmaCashCoinResetRequest) XXX_Unmarshal(b []byte) error

type PlasmaCashCoinState

type PlasmaCashCoinState int32
const (
	PlasmaCashCoinState_DEPOSITED  PlasmaCashCoinState = 0
	PlasmaCashCoinState_EXITING    PlasmaCashCoinState = 1
	PlasmaCashCoinState_CHALLENGED PlasmaCashCoinState = 2
	PlasmaCashCoinState_EXITED     PlasmaCashCoinState = 3
)

func (PlasmaCashCoinState) EnumDescriptor

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

func (PlasmaCashCoinState) String

func (x PlasmaCashCoinState) String() string

type PlasmaCashDepositConfirmedEvent

type PlasmaCashDepositConfirmedEvent struct {
	Coin                 *PlasmaCashCoin `protobuf:"bytes,1,opt,name=coin" json:"coin,omitempty"`
	Owner                *types.Address  `protobuf:"bytes,2,opt,name=owner" json:"owner,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*PlasmaCashDepositConfirmedEvent) Descriptor

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

func (*PlasmaCashDepositConfirmedEvent) GetCoin

func (*PlasmaCashDepositConfirmedEvent) GetOwner

func (*PlasmaCashDepositConfirmedEvent) ProtoMessage

func (*PlasmaCashDepositConfirmedEvent) ProtoMessage()

func (*PlasmaCashDepositConfirmedEvent) Reset

func (*PlasmaCashDepositConfirmedEvent) String

func (*PlasmaCashDepositConfirmedEvent) XXX_DiscardUnknown

func (m *PlasmaCashDepositConfirmedEvent) XXX_DiscardUnknown()

func (*PlasmaCashDepositConfirmedEvent) XXX_Marshal

func (m *PlasmaCashDepositConfirmedEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashDepositConfirmedEvent) XXX_Merge

func (dst *PlasmaCashDepositConfirmedEvent) XXX_Merge(src proto.Message)

func (*PlasmaCashDepositConfirmedEvent) XXX_Size

func (m *PlasmaCashDepositConfirmedEvent) XXX_Size() int

func (*PlasmaCashDepositConfirmedEvent) XXX_Unmarshal

func (m *PlasmaCashDepositConfirmedEvent) XXX_Unmarshal(b []byte) error

type PlasmaCashEventMeta

type PlasmaCashEventMeta struct {
	BlockNumber          uint64   `protobuf:"varint,1,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	TxIndex              uint64   `protobuf:"varint,2,opt,name=tx_index,json=txIndex,proto3" json:"tx_index,omitempty"`
	LogIndex             uint64   `protobuf:"varint,3,opt,name=log_index,json=logIndex,proto3" json:"log_index,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PlasmaCashEventMeta) Descriptor

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

func (*PlasmaCashEventMeta) GetBlockNumber

func (m *PlasmaCashEventMeta) GetBlockNumber() uint64

func (*PlasmaCashEventMeta) GetLogIndex

func (m *PlasmaCashEventMeta) GetLogIndex() uint64

func (*PlasmaCashEventMeta) GetTxIndex

func (m *PlasmaCashEventMeta) GetTxIndex() uint64

func (*PlasmaCashEventMeta) ProtoMessage

func (*PlasmaCashEventMeta) ProtoMessage()

func (*PlasmaCashEventMeta) Reset

func (m *PlasmaCashEventMeta) Reset()

func (*PlasmaCashEventMeta) String

func (m *PlasmaCashEventMeta) String() string

func (*PlasmaCashEventMeta) XXX_DiscardUnknown

func (m *PlasmaCashEventMeta) XXX_DiscardUnknown()

func (*PlasmaCashEventMeta) XXX_Marshal

func (m *PlasmaCashEventMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashEventMeta) XXX_Merge

func (dst *PlasmaCashEventMeta) XXX_Merge(src proto.Message)

func (*PlasmaCashEventMeta) XXX_Size

func (m *PlasmaCashEventMeta) XXX_Size() int

func (*PlasmaCashEventMeta) XXX_Unmarshal

func (m *PlasmaCashEventMeta) XXX_Unmarshal(b []byte) error

type PlasmaCashExitCoinRequest

type PlasmaCashExitCoinRequest struct {
	Owner                *types.Address `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	Slot                 uint64         `protobuf:"varint,2,opt,name=slot,proto3" json:"slot,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaCashExitCoinRequest) Descriptor

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

func (*PlasmaCashExitCoinRequest) GetOwner

func (m *PlasmaCashExitCoinRequest) GetOwner() *types.Address

func (*PlasmaCashExitCoinRequest) GetSlot

func (m *PlasmaCashExitCoinRequest) GetSlot() uint64

func (*PlasmaCashExitCoinRequest) ProtoMessage

func (*PlasmaCashExitCoinRequest) ProtoMessage()

func (*PlasmaCashExitCoinRequest) Reset

func (m *PlasmaCashExitCoinRequest) Reset()

func (*PlasmaCashExitCoinRequest) String

func (m *PlasmaCashExitCoinRequest) String() string

func (*PlasmaCashExitCoinRequest) XXX_DiscardUnknown

func (m *PlasmaCashExitCoinRequest) XXX_DiscardUnknown()

func (*PlasmaCashExitCoinRequest) XXX_Marshal

func (m *PlasmaCashExitCoinRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashExitCoinRequest) XXX_Merge

func (dst *PlasmaCashExitCoinRequest) XXX_Merge(src proto.Message)

func (*PlasmaCashExitCoinRequest) XXX_Size

func (m *PlasmaCashExitCoinRequest) XXX_Size() int

func (*PlasmaCashExitCoinRequest) XXX_Unmarshal

func (m *PlasmaCashExitCoinRequest) XXX_Unmarshal(b []byte) error

type PlasmaCashExitConfirmedEvent

type PlasmaCashExitConfirmedEvent struct {
	Owner                *types.Address `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	Slot                 uint64         `protobuf:"varint,2,opt,name=slot,proto3" json:"slot,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaCashExitConfirmedEvent) Descriptor

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

func (*PlasmaCashExitConfirmedEvent) GetOwner

func (*PlasmaCashExitConfirmedEvent) GetSlot

func (m *PlasmaCashExitConfirmedEvent) GetSlot() uint64

func (*PlasmaCashExitConfirmedEvent) ProtoMessage

func (*PlasmaCashExitConfirmedEvent) ProtoMessage()

func (*PlasmaCashExitConfirmedEvent) Reset

func (m *PlasmaCashExitConfirmedEvent) Reset()

func (*PlasmaCashExitConfirmedEvent) String

func (*PlasmaCashExitConfirmedEvent) XXX_DiscardUnknown

func (m *PlasmaCashExitConfirmedEvent) XXX_DiscardUnknown()

func (*PlasmaCashExitConfirmedEvent) XXX_Marshal

func (m *PlasmaCashExitConfirmedEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashExitConfirmedEvent) XXX_Merge

func (dst *PlasmaCashExitConfirmedEvent) XXX_Merge(src proto.Message)

func (*PlasmaCashExitConfirmedEvent) XXX_Size

func (m *PlasmaCashExitConfirmedEvent) XXX_Size() int

func (*PlasmaCashExitConfirmedEvent) XXX_Unmarshal

func (m *PlasmaCashExitConfirmedEvent) XXX_Unmarshal(b []byte) error

type PlasmaCashFinalizedExitEvent

type PlasmaCashFinalizedExitEvent struct {
	Owner                *types.Address       `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	Slot                 uint64               `protobuf:"varint,2,opt,name=slot,proto3" json:"slot,omitempty"`
	Meta                 *PlasmaCashEventMeta `protobuf:"bytes,3,opt,name=meta" json:"meta,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PlasmaCashFinalizedExitEvent) Descriptor

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

func (*PlasmaCashFinalizedExitEvent) GetMeta

func (*PlasmaCashFinalizedExitEvent) GetOwner

func (*PlasmaCashFinalizedExitEvent) GetSlot

func (m *PlasmaCashFinalizedExitEvent) GetSlot() uint64

func (*PlasmaCashFinalizedExitEvent) ProtoMessage

func (*PlasmaCashFinalizedExitEvent) ProtoMessage()

func (*PlasmaCashFinalizedExitEvent) Reset

func (m *PlasmaCashFinalizedExitEvent) Reset()

func (*PlasmaCashFinalizedExitEvent) String

func (*PlasmaCashFinalizedExitEvent) XXX_DiscardUnknown

func (m *PlasmaCashFinalizedExitEvent) XXX_DiscardUnknown()

func (*PlasmaCashFinalizedExitEvent) XXX_Marshal

func (m *PlasmaCashFinalizedExitEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashFinalizedExitEvent) XXX_Merge

func (dst *PlasmaCashFinalizedExitEvent) XXX_Merge(src proto.Message)

func (*PlasmaCashFinalizedExitEvent) XXX_Size

func (m *PlasmaCashFinalizedExitEvent) XXX_Size() int

func (*PlasmaCashFinalizedExitEvent) XXX_Unmarshal

func (m *PlasmaCashFinalizedExitEvent) XXX_Unmarshal(b []byte) error

type PlasmaCashGetRequestBatchTallyRequest

type PlasmaCashGetRequestBatchTallyRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PlasmaCashGetRequestBatchTallyRequest) Descriptor

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

func (*PlasmaCashGetRequestBatchTallyRequest) ProtoMessage

func (*PlasmaCashGetRequestBatchTallyRequest) ProtoMessage()

func (*PlasmaCashGetRequestBatchTallyRequest) Reset

func (*PlasmaCashGetRequestBatchTallyRequest) String

func (*PlasmaCashGetRequestBatchTallyRequest) XXX_DiscardUnknown

func (m *PlasmaCashGetRequestBatchTallyRequest) XXX_DiscardUnknown()

func (*PlasmaCashGetRequestBatchTallyRequest) XXX_Marshal

func (m *PlasmaCashGetRequestBatchTallyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashGetRequestBatchTallyRequest) XXX_Merge

func (*PlasmaCashGetRequestBatchTallyRequest) XXX_Size

func (*PlasmaCashGetRequestBatchTallyRequest) XXX_Unmarshal

func (m *PlasmaCashGetRequestBatchTallyRequest) XXX_Unmarshal(b []byte) error

type PlasmaCashInitRequest

type PlasmaCashInitRequest struct {
	Params               *PlasmaCashParams `protobuf:"bytes,1,opt,name=params" json:"params,omitempty"`
	Oracle               *types.Address    `protobuf:"bytes,2,opt,name=oracle" json:"oracle,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*PlasmaCashInitRequest) Descriptor

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

func (*PlasmaCashInitRequest) GetOracle

func (m *PlasmaCashInitRequest) GetOracle() *types.Address

func (*PlasmaCashInitRequest) GetParams

func (m *PlasmaCashInitRequest) GetParams() *PlasmaCashParams

func (*PlasmaCashInitRequest) ProtoMessage

func (*PlasmaCashInitRequest) ProtoMessage()

func (*PlasmaCashInitRequest) Reset

func (m *PlasmaCashInitRequest) Reset()

func (*PlasmaCashInitRequest) String

func (m *PlasmaCashInitRequest) String() string

func (*PlasmaCashInitRequest) XXX_DiscardUnknown

func (m *PlasmaCashInitRequest) XXX_DiscardUnknown()

func (*PlasmaCashInitRequest) XXX_Marshal

func (m *PlasmaCashInitRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashInitRequest) XXX_Merge

func (dst *PlasmaCashInitRequest) XXX_Merge(src proto.Message)

func (*PlasmaCashInitRequest) XXX_Size

func (m *PlasmaCashInitRequest) XXX_Size() int

func (*PlasmaCashInitRequest) XXX_Unmarshal

func (m *PlasmaCashInitRequest) XXX_Unmarshal(b []byte) error

type PlasmaCashParams

type PlasmaCashParams struct {
	BlockInterval        uint64   `protobuf:"varint,1,opt,name=block_interval,json=blockInterval,proto3" json:"block_interval,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Initialization of state from Genesis.json

func (*PlasmaCashParams) Descriptor

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

func (*PlasmaCashParams) GetBlockInterval

func (m *PlasmaCashParams) GetBlockInterval() uint64

func (*PlasmaCashParams) ProtoMessage

func (*PlasmaCashParams) ProtoMessage()

func (*PlasmaCashParams) Reset

func (m *PlasmaCashParams) Reset()

func (*PlasmaCashParams) String

func (m *PlasmaCashParams) String() string

func (*PlasmaCashParams) XXX_DiscardUnknown

func (m *PlasmaCashParams) XXX_DiscardUnknown()

func (*PlasmaCashParams) XXX_Marshal

func (m *PlasmaCashParams) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashParams) XXX_Merge

func (dst *PlasmaCashParams) XXX_Merge(src proto.Message)

func (*PlasmaCashParams) XXX_Size

func (m *PlasmaCashParams) XXX_Size() int

func (*PlasmaCashParams) XXX_Unmarshal

func (m *PlasmaCashParams) XXX_Unmarshal(b []byte) error

type PlasmaCashRequest

type PlasmaCashRequest struct {
	// Types that are valid to be assigned to Data:
	//	*PlasmaCashRequest_Deposit
	//	*PlasmaCashRequest_CoinReset
	//	*PlasmaCashRequest_StartedExit
	//	*PlasmaCashRequest_Withdraw
	Data                 isPlasmaCashRequest_Data `protobuf_oneof:"data"`
	Meta                 *PlasmaCashEventMeta     `protobuf:"bytes,5,opt,name=meta" json:"meta,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*PlasmaCashRequest) Descriptor

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

func (*PlasmaCashRequest) GetCoinReset

func (m *PlasmaCashRequest) GetCoinReset() *PlasmaCashCoinResetRequest

func (*PlasmaCashRequest) GetData

func (m *PlasmaCashRequest) GetData() isPlasmaCashRequest_Data

func (*PlasmaCashRequest) GetDeposit

func (m *PlasmaCashRequest) GetDeposit() *DepositRequest

func (*PlasmaCashRequest) GetMeta

func (m *PlasmaCashRequest) GetMeta() *PlasmaCashEventMeta

func (*PlasmaCashRequest) GetStartedExit

func (m *PlasmaCashRequest) GetStartedExit() *PlasmaCashExitCoinRequest

func (*PlasmaCashRequest) GetWithdraw

func (*PlasmaCashRequest) ProtoMessage

func (*PlasmaCashRequest) ProtoMessage()

func (*PlasmaCashRequest) Reset

func (m *PlasmaCashRequest) Reset()

func (*PlasmaCashRequest) String

func (m *PlasmaCashRequest) String() string

func (*PlasmaCashRequest) XXX_DiscardUnknown

func (m *PlasmaCashRequest) XXX_DiscardUnknown()

func (*PlasmaCashRequest) XXX_Marshal

func (m *PlasmaCashRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashRequest) XXX_Merge

func (dst *PlasmaCashRequest) XXX_Merge(src proto.Message)

func (*PlasmaCashRequest) XXX_OneofFuncs

func (*PlasmaCashRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

func (*PlasmaCashRequest) XXX_Size

func (m *PlasmaCashRequest) XXX_Size() int

func (*PlasmaCashRequest) XXX_Unmarshal

func (m *PlasmaCashRequest) XXX_Unmarshal(b []byte) error

type PlasmaCashRequestBatch

type PlasmaCashRequestBatch struct {
	Requests             []*PlasmaCashRequest `protobuf:"bytes,1,rep,name=requests" json:"requests,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PlasmaCashRequestBatch) Descriptor

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

func (*PlasmaCashRequestBatch) GetRequests

func (m *PlasmaCashRequestBatch) GetRequests() []*PlasmaCashRequest

func (*PlasmaCashRequestBatch) ProtoMessage

func (*PlasmaCashRequestBatch) ProtoMessage()

func (*PlasmaCashRequestBatch) Reset

func (m *PlasmaCashRequestBatch) Reset()

func (*PlasmaCashRequestBatch) String

func (m *PlasmaCashRequestBatch) String() string

func (*PlasmaCashRequestBatch) XXX_DiscardUnknown

func (m *PlasmaCashRequestBatch) XXX_DiscardUnknown()

func (*PlasmaCashRequestBatch) XXX_Marshal

func (m *PlasmaCashRequestBatch) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashRequestBatch) XXX_Merge

func (dst *PlasmaCashRequestBatch) XXX_Merge(src proto.Message)

func (*PlasmaCashRequestBatch) XXX_Size

func (m *PlasmaCashRequestBatch) XXX_Size() int

func (*PlasmaCashRequestBatch) XXX_Unmarshal

func (m *PlasmaCashRequestBatch) XXX_Unmarshal(b []byte) error

type PlasmaCashRequestBatchTally

type PlasmaCashRequestBatchTally struct {
	LastSeenBlockNumber  uint64   `protobuf:"varint,1,opt,name=last_seen_block_number,json=lastSeenBlockNumber,proto3" json:"last_seen_block_number,omitempty"`
	LastSeenTxIndex      uint64   `protobuf:"varint,2,opt,name=last_seen_tx_index,json=lastSeenTxIndex,proto3" json:"last_seen_tx_index,omitempty"`
	LastSeenLogIndex     uint64   `protobuf:"varint,3,opt,name=last_seen_log_index,json=lastSeenLogIndex,proto3" json:"last_seen_log_index,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PlasmaCashRequestBatchTally) Descriptor

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

func (*PlasmaCashRequestBatchTally) GetLastSeenBlockNumber

func (m *PlasmaCashRequestBatchTally) GetLastSeenBlockNumber() uint64

func (*PlasmaCashRequestBatchTally) GetLastSeenLogIndex

func (m *PlasmaCashRequestBatchTally) GetLastSeenLogIndex() uint64

func (*PlasmaCashRequestBatchTally) GetLastSeenTxIndex

func (m *PlasmaCashRequestBatchTally) GetLastSeenTxIndex() uint64

func (*PlasmaCashRequestBatchTally) ProtoMessage

func (*PlasmaCashRequestBatchTally) ProtoMessage()

func (*PlasmaCashRequestBatchTally) Reset

func (m *PlasmaCashRequestBatchTally) Reset()

func (*PlasmaCashRequestBatchTally) String

func (m *PlasmaCashRequestBatchTally) String() string

func (*PlasmaCashRequestBatchTally) XXX_DiscardUnknown

func (m *PlasmaCashRequestBatchTally) XXX_DiscardUnknown()

func (*PlasmaCashRequestBatchTally) XXX_Marshal

func (m *PlasmaCashRequestBatchTally) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashRequestBatchTally) XXX_Merge

func (dst *PlasmaCashRequestBatchTally) XXX_Merge(src proto.Message)

func (*PlasmaCashRequestBatchTally) XXX_Size

func (m *PlasmaCashRequestBatchTally) XXX_Size() int

func (*PlasmaCashRequestBatchTally) XXX_Unmarshal

func (m *PlasmaCashRequestBatchTally) XXX_Unmarshal(b []byte) error

type PlasmaCashRequest_CoinReset

type PlasmaCashRequest_CoinReset struct {
	CoinReset *PlasmaCashCoinResetRequest `protobuf:"bytes,2,opt,name=coin_reset,json=coinReset,oneof"`
}

type PlasmaCashRequest_Deposit

type PlasmaCashRequest_Deposit struct {
	Deposit *DepositRequest `protobuf:"bytes,1,opt,name=deposit,oneof"`
}

type PlasmaCashRequest_StartedExit

type PlasmaCashRequest_StartedExit struct {
	StartedExit *PlasmaCashExitCoinRequest `protobuf:"bytes,3,opt,name=started_exit,json=startedExit,oneof"`
}

type PlasmaCashRequest_Withdraw

type PlasmaCashRequest_Withdraw struct {
	Withdraw *PlasmaCashWithdrawCoinRequest `protobuf:"bytes,4,opt,name=withdraw,oneof"`
}

type PlasmaCashResetConfirmedEvent

type PlasmaCashResetConfirmedEvent struct {
	Owner                *types.Address `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	Slot                 uint64         `protobuf:"varint,2,opt,name=slot,proto3" json:"slot,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaCashResetConfirmedEvent) Descriptor

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

func (*PlasmaCashResetConfirmedEvent) GetOwner

func (*PlasmaCashResetConfirmedEvent) GetSlot

func (*PlasmaCashResetConfirmedEvent) ProtoMessage

func (*PlasmaCashResetConfirmedEvent) ProtoMessage()

func (*PlasmaCashResetConfirmedEvent) Reset

func (m *PlasmaCashResetConfirmedEvent) Reset()

func (*PlasmaCashResetConfirmedEvent) String

func (*PlasmaCashResetConfirmedEvent) XXX_DiscardUnknown

func (m *PlasmaCashResetConfirmedEvent) XXX_DiscardUnknown()

func (*PlasmaCashResetConfirmedEvent) XXX_Marshal

func (m *PlasmaCashResetConfirmedEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashResetConfirmedEvent) XXX_Merge

func (dst *PlasmaCashResetConfirmedEvent) XXX_Merge(src proto.Message)

func (*PlasmaCashResetConfirmedEvent) XXX_Size

func (m *PlasmaCashResetConfirmedEvent) XXX_Size() int

func (*PlasmaCashResetConfirmedEvent) XXX_Unmarshal

func (m *PlasmaCashResetConfirmedEvent) XXX_Unmarshal(b []byte) error

type PlasmaCashStartedExitEvent

type PlasmaCashStartedExitEvent struct {
	Owner                *types.Address       `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	Slot                 uint64               `protobuf:"varint,2,opt,name=slot,proto3" json:"slot,omitempty"`
	Meta                 *PlasmaCashEventMeta `protobuf:"bytes,3,opt,name=meta" json:"meta,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PlasmaCashStartedExitEvent) Descriptor

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

func (*PlasmaCashStartedExitEvent) GetMeta

func (*PlasmaCashStartedExitEvent) GetOwner

func (m *PlasmaCashStartedExitEvent) GetOwner() *types.Address

func (*PlasmaCashStartedExitEvent) GetSlot

func (m *PlasmaCashStartedExitEvent) GetSlot() uint64

func (*PlasmaCashStartedExitEvent) ProtoMessage

func (*PlasmaCashStartedExitEvent) ProtoMessage()

func (*PlasmaCashStartedExitEvent) Reset

func (m *PlasmaCashStartedExitEvent) Reset()

func (*PlasmaCashStartedExitEvent) String

func (m *PlasmaCashStartedExitEvent) String() string

func (*PlasmaCashStartedExitEvent) XXX_DiscardUnknown

func (m *PlasmaCashStartedExitEvent) XXX_DiscardUnknown()

func (*PlasmaCashStartedExitEvent) XXX_Marshal

func (m *PlasmaCashStartedExitEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashStartedExitEvent) XXX_Merge

func (dst *PlasmaCashStartedExitEvent) XXX_Merge(src proto.Message)

func (*PlasmaCashStartedExitEvent) XXX_Size

func (m *PlasmaCashStartedExitEvent) XXX_Size() int

func (*PlasmaCashStartedExitEvent) XXX_Unmarshal

func (m *PlasmaCashStartedExitEvent) XXX_Unmarshal(b []byte) error

type PlasmaCashSubmitBlockConfirmedEvent

type PlasmaCashSubmitBlockConfirmedEvent struct {
	NumberOfPendingTransactions uint64         `` /* 147-byte string literal not displayed */
	CurrentBlockHeight          *types.BigUInt `protobuf:"bytes,2,opt,name=current_block_height,json=currentBlockHeight" json:"current_block_height,omitempty"`
	MerkleHash                  []byte         `protobuf:"bytes,3,opt,name=merkle_hash,json=merkleHash,proto3" json:"merkle_hash,omitempty"`
	XXX_NoUnkeyedLiteral        struct{}       `json:"-"`
	XXX_unrecognized            []byte         `json:"-"`
	XXX_sizecache               int32          `json:"-"`
}

func (*PlasmaCashSubmitBlockConfirmedEvent) Descriptor

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

func (*PlasmaCashSubmitBlockConfirmedEvent) GetCurrentBlockHeight

func (m *PlasmaCashSubmitBlockConfirmedEvent) GetCurrentBlockHeight() *types.BigUInt

func (*PlasmaCashSubmitBlockConfirmedEvent) GetMerkleHash

func (m *PlasmaCashSubmitBlockConfirmedEvent) GetMerkleHash() []byte

func (*PlasmaCashSubmitBlockConfirmedEvent) GetNumberOfPendingTransactions

func (m *PlasmaCashSubmitBlockConfirmedEvent) GetNumberOfPendingTransactions() uint64

func (*PlasmaCashSubmitBlockConfirmedEvent) ProtoMessage

func (*PlasmaCashSubmitBlockConfirmedEvent) ProtoMessage()

func (*PlasmaCashSubmitBlockConfirmedEvent) Reset

func (*PlasmaCashSubmitBlockConfirmedEvent) String

func (*PlasmaCashSubmitBlockConfirmedEvent) XXX_DiscardUnknown

func (m *PlasmaCashSubmitBlockConfirmedEvent) XXX_DiscardUnknown()

func (*PlasmaCashSubmitBlockConfirmedEvent) XXX_Marshal

func (m *PlasmaCashSubmitBlockConfirmedEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashSubmitBlockConfirmedEvent) XXX_Merge

func (*PlasmaCashSubmitBlockConfirmedEvent) XXX_Size

func (*PlasmaCashSubmitBlockConfirmedEvent) XXX_Unmarshal

func (m *PlasmaCashSubmitBlockConfirmedEvent) XXX_Unmarshal(b []byte) error

type PlasmaCashTransferConfirmed

type PlasmaCashTransferConfirmed struct {
	From                 *types.Address `protobuf:"bytes,1,opt,name=from" json:"from,omitempty"`
	To                   *types.Address `protobuf:"bytes,2,opt,name=to" json:"to,omitempty"`
	Slot                 uint64         `protobuf:"varint,3,opt,name=slot,proto3" json:"slot,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaCashTransferConfirmed) Descriptor

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

func (*PlasmaCashTransferConfirmed) GetFrom

func (*PlasmaCashTransferConfirmed) GetSlot

func (m *PlasmaCashTransferConfirmed) GetSlot() uint64

func (*PlasmaCashTransferConfirmed) GetTo

func (*PlasmaCashTransferConfirmed) ProtoMessage

func (*PlasmaCashTransferConfirmed) ProtoMessage()

func (*PlasmaCashTransferConfirmed) Reset

func (m *PlasmaCashTransferConfirmed) Reset()

func (*PlasmaCashTransferConfirmed) String

func (m *PlasmaCashTransferConfirmed) String() string

func (*PlasmaCashTransferConfirmed) XXX_DiscardUnknown

func (m *PlasmaCashTransferConfirmed) XXX_DiscardUnknown()

func (*PlasmaCashTransferConfirmed) XXX_Marshal

func (m *PlasmaCashTransferConfirmed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashTransferConfirmed) XXX_Merge

func (dst *PlasmaCashTransferConfirmed) XXX_Merge(src proto.Message)

func (*PlasmaCashTransferConfirmed) XXX_Size

func (m *PlasmaCashTransferConfirmed) XXX_Size() int

func (*PlasmaCashTransferConfirmed) XXX_Unmarshal

func (m *PlasmaCashTransferConfirmed) XXX_Unmarshal(b []byte) error

type PlasmaCashUpdateOracleRequest

type PlasmaCashUpdateOracleRequest struct {
	NewOracle            *types.Address `protobuf:"bytes,1,opt,name=new_oracle,json=newOracle" json:"new_oracle,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaCashUpdateOracleRequest) Descriptor

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

func (*PlasmaCashUpdateOracleRequest) GetNewOracle

func (m *PlasmaCashUpdateOracleRequest) GetNewOracle() *types.Address

func (*PlasmaCashUpdateOracleRequest) ProtoMessage

func (*PlasmaCashUpdateOracleRequest) ProtoMessage()

func (*PlasmaCashUpdateOracleRequest) Reset

func (m *PlasmaCashUpdateOracleRequest) Reset()

func (*PlasmaCashUpdateOracleRequest) String

func (*PlasmaCashUpdateOracleRequest) XXX_DiscardUnknown

func (m *PlasmaCashUpdateOracleRequest) XXX_DiscardUnknown()

func (*PlasmaCashUpdateOracleRequest) XXX_Marshal

func (m *PlasmaCashUpdateOracleRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashUpdateOracleRequest) XXX_Merge

func (dst *PlasmaCashUpdateOracleRequest) XXX_Merge(src proto.Message)

func (*PlasmaCashUpdateOracleRequest) XXX_Size

func (m *PlasmaCashUpdateOracleRequest) XXX_Size() int

func (*PlasmaCashUpdateOracleRequest) XXX_Unmarshal

func (m *PlasmaCashUpdateOracleRequest) XXX_Unmarshal(b []byte) error

type PlasmaCashWithdrawCoinRequest

type PlasmaCashWithdrawCoinRequest struct {
	Owner                *types.Address `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	Slot                 uint64         `protobuf:"varint,2,opt,name=slot,proto3" json:"slot,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaCashWithdrawCoinRequest) Descriptor

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

func (*PlasmaCashWithdrawCoinRequest) GetOwner

func (*PlasmaCashWithdrawCoinRequest) GetSlot

func (*PlasmaCashWithdrawCoinRequest) ProtoMessage

func (*PlasmaCashWithdrawCoinRequest) ProtoMessage()

func (*PlasmaCashWithdrawCoinRequest) Reset

func (m *PlasmaCashWithdrawCoinRequest) Reset()

func (*PlasmaCashWithdrawCoinRequest) String

func (*PlasmaCashWithdrawCoinRequest) XXX_DiscardUnknown

func (m *PlasmaCashWithdrawCoinRequest) XXX_DiscardUnknown()

func (*PlasmaCashWithdrawCoinRequest) XXX_Marshal

func (m *PlasmaCashWithdrawCoinRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashWithdrawCoinRequest) XXX_Merge

func (dst *PlasmaCashWithdrawCoinRequest) XXX_Merge(src proto.Message)

func (*PlasmaCashWithdrawCoinRequest) XXX_Size

func (m *PlasmaCashWithdrawCoinRequest) XXX_Size() int

func (*PlasmaCashWithdrawCoinRequest) XXX_Unmarshal

func (m *PlasmaCashWithdrawCoinRequest) XXX_Unmarshal(b []byte) error

type PlasmaCashWithdrawConfirmedEvent

type PlasmaCashWithdrawConfirmedEvent struct {
	Coin                 *PlasmaCashCoin `protobuf:"bytes,1,opt,name=coin" json:"coin,omitempty"`
	Owner                *types.Address  `protobuf:"bytes,2,opt,name=owner" json:"owner,omitempty"`
	Slot                 uint64          `protobuf:"varint,3,opt,name=slot,proto3" json:"slot,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*PlasmaCashWithdrawConfirmedEvent) Descriptor

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

func (*PlasmaCashWithdrawConfirmedEvent) GetCoin

func (*PlasmaCashWithdrawConfirmedEvent) GetOwner

func (*PlasmaCashWithdrawConfirmedEvent) GetSlot

func (*PlasmaCashWithdrawConfirmedEvent) ProtoMessage

func (*PlasmaCashWithdrawConfirmedEvent) ProtoMessage()

func (*PlasmaCashWithdrawConfirmedEvent) Reset

func (*PlasmaCashWithdrawConfirmedEvent) String

func (*PlasmaCashWithdrawConfirmedEvent) XXX_DiscardUnknown

func (m *PlasmaCashWithdrawConfirmedEvent) XXX_DiscardUnknown()

func (*PlasmaCashWithdrawConfirmedEvent) XXX_Marshal

func (m *PlasmaCashWithdrawConfirmedEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashWithdrawConfirmedEvent) XXX_Merge

func (dst *PlasmaCashWithdrawConfirmedEvent) XXX_Merge(src proto.Message)

func (*PlasmaCashWithdrawConfirmedEvent) XXX_Size

func (m *PlasmaCashWithdrawConfirmedEvent) XXX_Size() int

func (*PlasmaCashWithdrawConfirmedEvent) XXX_Unmarshal

func (m *PlasmaCashWithdrawConfirmedEvent) XXX_Unmarshal(b []byte) error

type PlasmaCashWithdrewEvent

type PlasmaCashWithdrewEvent struct {
	Owner                *types.Address       `protobuf:"bytes,1,opt,name=owner" json:"owner,omitempty"`
	Mode                 uint32               `protobuf:"varint,2,opt,name=mode,proto3" json:"mode,omitempty"`
	Contract             *types.Address       `protobuf:"bytes,3,opt,name=contract" json:"contract,omitempty"`
	Uid                  *types.BigUInt       `protobuf:"bytes,4,opt,name=uid" json:"uid,omitempty"`
	Denomination         *types.BigUInt       `protobuf:"bytes,5,opt,name=denomination" json:"denomination,omitempty"`
	Slot                 uint64               `protobuf:"varint,6,opt,name=slot,proto3" json:"slot,omitempty"`
	Meta                 *PlasmaCashEventMeta `protobuf:"bytes,7,opt,name=meta" json:"meta,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PlasmaCashWithdrewEvent) Descriptor

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

func (*PlasmaCashWithdrewEvent) GetContract

func (m *PlasmaCashWithdrewEvent) GetContract() *types.Address

func (*PlasmaCashWithdrewEvent) GetDenomination

func (m *PlasmaCashWithdrewEvent) GetDenomination() *types.BigUInt

func (*PlasmaCashWithdrewEvent) GetMeta

func (*PlasmaCashWithdrewEvent) GetMode

func (m *PlasmaCashWithdrewEvent) GetMode() uint32

func (*PlasmaCashWithdrewEvent) GetOwner

func (m *PlasmaCashWithdrewEvent) GetOwner() *types.Address

func (*PlasmaCashWithdrewEvent) GetSlot

func (m *PlasmaCashWithdrewEvent) GetSlot() uint64

func (*PlasmaCashWithdrewEvent) GetUid

func (m *PlasmaCashWithdrewEvent) GetUid() *types.BigUInt

func (*PlasmaCashWithdrewEvent) ProtoMessage

func (*PlasmaCashWithdrewEvent) ProtoMessage()

func (*PlasmaCashWithdrewEvent) Reset

func (m *PlasmaCashWithdrewEvent) Reset()

func (*PlasmaCashWithdrewEvent) String

func (m *PlasmaCashWithdrewEvent) String() string

func (*PlasmaCashWithdrewEvent) XXX_DiscardUnknown

func (m *PlasmaCashWithdrewEvent) XXX_DiscardUnknown()

func (*PlasmaCashWithdrewEvent) XXX_Marshal

func (m *PlasmaCashWithdrewEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaCashWithdrewEvent) XXX_Merge

func (dst *PlasmaCashWithdrewEvent) XXX_Merge(src proto.Message)

func (*PlasmaCashWithdrewEvent) XXX_Size

func (m *PlasmaCashWithdrewEvent) XXX_Size() int

func (*PlasmaCashWithdrewEvent) XXX_Unmarshal

func (m *PlasmaCashWithdrewEvent) XXX_Unmarshal(b []byte) error

type PlasmaDepositEvent

type PlasmaDepositEvent struct {
	Slot         uint64         `protobuf:"varint,1,opt,name=slot,proto3" json:"slot,omitempty"`
	DepositBlock *types.BigUInt `protobuf:"bytes,2,opt,name=deposit_block,json=depositBlock" json:"deposit_block,omitempty"`
	// For ERC20 this is the number of coins deposited, for ERC721 this is a token ID.
	Denomination *types.BigUInt `protobuf:"bytes,3,opt,name=denomination" json:"denomination,omitempty"`
	// Entity that made the deposit
	From *types.Address `protobuf:"bytes,4,opt,name=from" json:"from,omitempty"`
	// Contract from which the coins originated (i.e. the currency of the coins)
	Contract             *types.Address       `protobuf:"bytes,5,opt,name=contract" json:"contract,omitempty"`
	Meta                 *PlasmaCashEventMeta `protobuf:"bytes,6,opt,name=meta" json:"meta,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PlasmaDepositEvent) Descriptor

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

func (*PlasmaDepositEvent) GetContract

func (m *PlasmaDepositEvent) GetContract() *types.Address

func (*PlasmaDepositEvent) GetDenomination

func (m *PlasmaDepositEvent) GetDenomination() *types.BigUInt

func (*PlasmaDepositEvent) GetDepositBlock

func (m *PlasmaDepositEvent) GetDepositBlock() *types.BigUInt

func (*PlasmaDepositEvent) GetFrom

func (m *PlasmaDepositEvent) GetFrom() *types.Address

func (*PlasmaDepositEvent) GetMeta

func (*PlasmaDepositEvent) GetSlot

func (m *PlasmaDepositEvent) GetSlot() uint64

func (*PlasmaDepositEvent) ProtoMessage

func (*PlasmaDepositEvent) ProtoMessage()

func (*PlasmaDepositEvent) Reset

func (m *PlasmaDepositEvent) Reset()

func (*PlasmaDepositEvent) String

func (m *PlasmaDepositEvent) String() string

func (*PlasmaDepositEvent) XXX_DiscardUnknown

func (m *PlasmaDepositEvent) XXX_DiscardUnknown()

func (*PlasmaDepositEvent) XXX_Marshal

func (m *PlasmaDepositEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaDepositEvent) XXX_Merge

func (dst *PlasmaDepositEvent) XXX_Merge(src proto.Message)

func (*PlasmaDepositEvent) XXX_Size

func (m *PlasmaDepositEvent) XXX_Size() int

func (*PlasmaDepositEvent) XXX_Unmarshal

func (m *PlasmaDepositEvent) XXX_Unmarshal(b []byte) error

type PlasmaTx

type PlasmaTx struct {
	Slot                 uint64         `protobuf:"varint,1,opt,name=slot,proto3" json:"slot,omitempty"`
	PreviousBlock        *types.BigUInt `protobuf:"bytes,2,opt,name=previous_block,json=previousBlock" json:"previous_block,omitempty"`
	Denomination         *types.BigUInt `protobuf:"bytes,3,opt,name=denomination" json:"denomination,omitempty"`
	NewOwner             *types.Address `protobuf:"bytes,4,opt,name=new_owner,json=newOwner" json:"new_owner,omitempty"`
	Signature            []byte         `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature,omitempty"`
	Hash                 []byte         `protobuf:"bytes,6,opt,name=hash,proto3" json:"hash,omitempty"`
	MerkleHash           []byte         `protobuf:"bytes,7,opt,name=merkle_hash,json=merkleHash,proto3" json:"merkle_hash,omitempty"`
	Sender               *types.Address `protobuf:"bytes,8,opt,name=sender" json:"sender,omitempty"`
	Proof                []byte         `protobuf:"bytes,9,opt,name=proof,proto3" json:"proof,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PlasmaTx) Descriptor

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

func (*PlasmaTx) GetDenomination

func (m *PlasmaTx) GetDenomination() *types.BigUInt

func (*PlasmaTx) GetHash

func (m *PlasmaTx) GetHash() []byte

func (*PlasmaTx) GetMerkleHash

func (m *PlasmaTx) GetMerkleHash() []byte

func (*PlasmaTx) GetNewOwner

func (m *PlasmaTx) GetNewOwner() *types.Address

func (*PlasmaTx) GetPreviousBlock

func (m *PlasmaTx) GetPreviousBlock() *types.BigUInt

func (*PlasmaTx) GetProof

func (m *PlasmaTx) GetProof() []byte

func (*PlasmaTx) GetSender

func (m *PlasmaTx) GetSender() *types.Address

func (*PlasmaTx) GetSignature

func (m *PlasmaTx) GetSignature() []byte

func (*PlasmaTx) GetSlot

func (m *PlasmaTx) GetSlot() uint64

func (*PlasmaTx) ProtoMessage

func (*PlasmaTx) ProtoMessage()

func (*PlasmaTx) Reset

func (m *PlasmaTx) Reset()

func (*PlasmaTx) String

func (m *PlasmaTx) String() string

func (*PlasmaTx) XXX_DiscardUnknown

func (m *PlasmaTx) XXX_DiscardUnknown()

func (*PlasmaTx) XXX_Marshal

func (m *PlasmaTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaTx) XXX_Merge

func (dst *PlasmaTx) XXX_Merge(src proto.Message)

func (*PlasmaTx) XXX_Size

func (m *PlasmaTx) XXX_Size() int

func (*PlasmaTx) XXX_Unmarshal

func (m *PlasmaTx) XXX_Unmarshal(b []byte) error

type PlasmaTxRequest

type PlasmaTxRequest struct {
	Plasmatx             *PlasmaTx `protobuf:"bytes,1,opt,name=plasmatx" json:"plasmatx,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*PlasmaTxRequest) Descriptor

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

func (*PlasmaTxRequest) GetPlasmatx

func (m *PlasmaTxRequest) GetPlasmatx() *PlasmaTx

func (*PlasmaTxRequest) ProtoMessage

func (*PlasmaTxRequest) ProtoMessage()

func (*PlasmaTxRequest) Reset

func (m *PlasmaTxRequest) Reset()

func (*PlasmaTxRequest) String

func (m *PlasmaTxRequest) String() string

func (*PlasmaTxRequest) XXX_DiscardUnknown

func (m *PlasmaTxRequest) XXX_DiscardUnknown()

func (*PlasmaTxRequest) XXX_Marshal

func (m *PlasmaTxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaTxRequest) XXX_Merge

func (dst *PlasmaTxRequest) XXX_Merge(src proto.Message)

func (*PlasmaTxRequest) XXX_Size

func (m *PlasmaTxRequest) XXX_Size() int

func (*PlasmaTxRequest) XXX_Unmarshal

func (m *PlasmaTxRequest) XXX_Unmarshal(b []byte) error

type PlasmaTxResponse

type PlasmaTxResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PlasmaTxResponse) Descriptor

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

func (*PlasmaTxResponse) ProtoMessage

func (*PlasmaTxResponse) ProtoMessage()

func (*PlasmaTxResponse) Reset

func (m *PlasmaTxResponse) Reset()

func (*PlasmaTxResponse) String

func (m *PlasmaTxResponse) String() string

func (*PlasmaTxResponse) XXX_DiscardUnknown

func (m *PlasmaTxResponse) XXX_DiscardUnknown()

func (*PlasmaTxResponse) XXX_Marshal

func (m *PlasmaTxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PlasmaTxResponse) XXX_Merge

func (dst *PlasmaTxResponse) XXX_Merge(src proto.Message)

func (*PlasmaTxResponse) XXX_Size

func (m *PlasmaTxResponse) XXX_Size() int

func (*PlasmaTxResponse) XXX_Unmarshal

func (m *PlasmaTxResponse) XXX_Unmarshal(b []byte) error

type SubmitBlockToMainnetRequest

type SubmitBlockToMainnetRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

This only originates from the validator

func (*SubmitBlockToMainnetRequest) Descriptor

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

func (*SubmitBlockToMainnetRequest) ProtoMessage

func (*SubmitBlockToMainnetRequest) ProtoMessage()

func (*SubmitBlockToMainnetRequest) Reset

func (m *SubmitBlockToMainnetRequest) Reset()

func (*SubmitBlockToMainnetRequest) String

func (m *SubmitBlockToMainnetRequest) String() string

func (*SubmitBlockToMainnetRequest) XXX_DiscardUnknown

func (m *SubmitBlockToMainnetRequest) XXX_DiscardUnknown()

func (*SubmitBlockToMainnetRequest) XXX_Marshal

func (m *SubmitBlockToMainnetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SubmitBlockToMainnetRequest) XXX_Merge

func (dst *SubmitBlockToMainnetRequest) XXX_Merge(src proto.Message)

func (*SubmitBlockToMainnetRequest) XXX_Size

func (m *SubmitBlockToMainnetRequest) XXX_Size() int

func (*SubmitBlockToMainnetRequest) XXX_Unmarshal

func (m *SubmitBlockToMainnetRequest) XXX_Unmarshal(b []byte) error

type SubmitBlockToMainnetResponse

type SubmitBlockToMainnetResponse struct {
	MerkleHash           []byte   `protobuf:"bytes,1,opt,name=merkle_hash,json=merkleHash,proto3" json:"merkle_hash,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SubmitBlockToMainnetResponse) Descriptor

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

func (*SubmitBlockToMainnetResponse) GetMerkleHash

func (m *SubmitBlockToMainnetResponse) GetMerkleHash() []byte

func (*SubmitBlockToMainnetResponse) ProtoMessage

func (*SubmitBlockToMainnetResponse) ProtoMessage()

func (*SubmitBlockToMainnetResponse) Reset

func (m *SubmitBlockToMainnetResponse) Reset()

func (*SubmitBlockToMainnetResponse) String

func (*SubmitBlockToMainnetResponse) XXX_DiscardUnknown

func (m *SubmitBlockToMainnetResponse) XXX_DiscardUnknown()

func (*SubmitBlockToMainnetResponse) XXX_Marshal

func (m *SubmitBlockToMainnetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SubmitBlockToMainnetResponse) XXX_Merge

func (dst *SubmitBlockToMainnetResponse) XXX_Merge(src proto.Message)

func (*SubmitBlockToMainnetResponse) XXX_Size

func (m *SubmitBlockToMainnetResponse) XXX_Size() int

func (*SubmitBlockToMainnetResponse) XXX_Unmarshal

func (m *SubmitBlockToMainnetResponse) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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