types

package
v0.0.0-...-d858d49 Latest Latest
Warning

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

Go to latest
Published: Nov 29, 2024 License: LGPL-3.0 Imports: 37 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	TurnstileEventRegister = "Register"
	TurnstileEventUpdate   = "Assign"
)
View Source
const (
	// ModuleName defines the module name
	ModuleName = "csr"

	// StoreKey defines the primary module store key
	StoreKey = ModuleName

	// RouterKey is the message route for slashing
	RouterKey = ModuleName
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default capability global index

Variables

View Source
var (
	ErrInvalidLengthCsr        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowCsr          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupCsr = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrSmartContractSupply         = errorsmod.Register(ModuleName, 1000, "The supply of smart contracts must be greater than 0")
	ErrDuplicateSmartContracts     = errorsmod.Register(ModuleName, 1001, "There cannot be duplicate smart contracts")
	ErrInvalidSmartContractAddress = errorsmod.Register(ModuleName, 1002, "There cannot be invalid smart contract addresses")
	ErrInvalidParams               = errorsmod.Register(ModuleName, 1003, "The parameters for CSR are invalid")
)

CSR module sentinel errors

View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	KeyPrefixCSR      = []byte{prefixCSR}
	KeyPrefixContract = []byte{prefixContract}
	KeyPrefixAddrs    = []byte{prefixAddrs}
)

KVStore key prefixes

View Source
var (
	DefaultEnableCSR = false
	DefaultCSRShares = sdkmath.LegacyNewDecWithPrec(20, 2)

	ParamStoreKeyEnableCSR = []byte("EnableCSR")
	ParamStoreKeyCSRShares = []byte("CSRShares")
)
View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var ModuleAddress common.Address

ModuleAcct will be the account from which all contracts are deployed from

View Source
var TurnstileKey = []byte("Turnstile")

key for turnstile address once deployed

Functions

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table

func RegisterInterfaces

func RegisterInterfaces(registry codectypes.InterfaceRegistry)

register interfaces for the AminoCodec

func RegisterLegacyAminoCodec

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

register csr msg types for Amino Codec in adherence to EIP-712 signing conventions

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

func RegisterQueryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterQueryHandler registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterQueryHandlerClient

func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error

RegisterQueryHandlerClient registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QueryClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QueryClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "QueryClient" to call the correct interceptors.

func RegisterQueryHandlerFromEndpoint

func RegisterQueryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterQueryHandlerFromEndpoint is same as RegisterQueryHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterQueryHandlerServer

func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error

RegisterQueryHandlerServer registers the http handlers for service Query to "mux". UnaryRPC :call QueryServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterQueryHandlerFromEndpoint instead.

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

func ValidateEnableCSR

func ValidateEnableCSR(i interface{}) error

Validates the boolean which enables CSR

func ValidateShares

func ValidateShares(i interface{}) error

Validates the CSR share dec that is inputted

Types

type AccountKeeper

type AccountKeeper interface {
	GetSequence(ctx context.Context, addr sdk.AccAddress) (uint64, error)
}

AccountKeeper defines the expected interface needed to retrieve account info.

type BankKeeper

type BankKeeper interface {
	SendCoinsFromModuleToModule(ctx context.Context, senderModule string, recipientModule string, amt sdk.Coins) error
	BurnCoins(ctx context.Context, moduleName string, amt sdk.Coins) error
}

BankKeeper defines the expected interface needed to send tx fees from the fee collector module to the CSR module for distribution.

type CSR

type CSR struct {
	// Contracts is the list of all EVM address that are registered to this NFT
	Contracts []string `protobuf:"bytes,1,rep,name=contracts,proto3" json:"contracts,omitempty"`
	// The NFT id which this CSR corresponds to
	Id uint64 `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	// The total number of transactions for this CSR NFT
	Txs uint64 `protobuf:"varint,3,opt,name=txs,proto3" json:"txs,omitempty"`
	// The cumulative revenue for this CSR NFT -> represented as a sdk.Int
	Revenue cosmossdk_io_math.Int `protobuf:"bytes,4,opt,name=revenue,proto3,customtype=cosmossdk.io/math.Int" json:"revenue"`
}

The CSR struct is a wrapper to all of the metadata associated with a given CST NFT

func NewCSR

func NewCSR(contracts []string, id uint64) CSR

Creates a new instance of the CSR object

func (*CSR) Descriptor

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

func (*CSR) GetContracts

func (m *CSR) GetContracts() []string

func (*CSR) GetId

func (m *CSR) GetId() uint64

func (*CSR) GetTxs

func (m *CSR) GetTxs() uint64

func (*CSR) Marshal

func (m *CSR) Marshal() (dAtA []byte, err error)

func (*CSR) MarshalTo

func (m *CSR) MarshalTo(dAtA []byte) (int, error)

func (*CSR) MarshalToSizedBuffer

func (m *CSR) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSR) ProtoMessage

func (*CSR) ProtoMessage()

func (*CSR) Reset

func (m *CSR) Reset()

func (*CSR) Size

func (m *CSR) Size() (n int)

func (*CSR) String

func (m *CSR) String() string

func (*CSR) Unmarshal

func (m *CSR) Unmarshal(dAtA []byte) error

func (CSR) Validate

func (csr CSR) Validate() error

Validate performs stateless validation of a CSR object. This will check if there are duplicate smart contracts entered in the CSR, whether each smart contract is a valid eth address and check if the number of contracts is greater than 1.

func (*CSR) XXX_DiscardUnknown

func (m *CSR) XXX_DiscardUnknown()

func (*CSR) XXX_Marshal

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

func (*CSR) XXX_Merge

func (m *CSR) XXX_Merge(src proto.Message)

func (*CSR) XXX_Size

func (m *CSR) XXX_Size() int

func (*CSR) XXX_Unmarshal

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

type EVMKeeper

type EVMKeeper interface {
	ApplyMessage(ctx sdk.Context, msg core.Message, tracer vm.EVMLogger, commit bool) (*evmtypes.MsgEthereumTxResponse, error)
	EstimateGas(c context.Context, req *evmtypes.EthCallRequest) (*evmtypes.EstimateGasResponse, error)
	GetAccount(ctx sdk.Context, addr common.Address) *statedb.Account
	GetParams(ctx sdk.Context) evmtypes.Params
}

EVMKeeper defines the expected EVM keeper interface used to make EVM deployments and txs from the module account.

type GenesisState

type GenesisState struct {
	// params defines all of the parameters of the module
	Params           Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	Csrs             []CSR  `protobuf:"bytes,2,rep,name=csrs,proto3" json:"csrs"`
	TurnstileAddress string `protobuf:"bytes,3,opt,name=turnstile_address,json=turnstileAddress,proto3" json:"turnstile_address,omitempty"`
}

GenesisState defines the csr module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default Capability genesis state

func NewGenesisState

func NewGenesisState(params Params, csrs []CSR, turnstileAddress string) *GenesisState

func (*GenesisState) Descriptor

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

func (*GenesisState) GetCsrs

func (m *GenesisState) GetCsrs() []CSR

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetTurnstileAddress

func (m *GenesisState) GetTurnstileAddress() string

func (*GenesisState) Marshal

func (m *GenesisState) Marshal() (dAtA []byte, err error)

func (*GenesisState) MarshalTo

func (m *GenesisState) MarshalTo(dAtA []byte) (int, error)

func (*GenesisState) MarshalToSizedBuffer

func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

func (m *GenesisState) Size() (n int)

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

func (m *GenesisState) Unmarshal(dAtA []byte) error

func (GenesisState) Validate

func (gs GenesisState) Validate() error

By default, there should be no CSRs on genesis because the CSR turnstile and NFT smart contracts have not been deployed yet. Checks if params are valid.

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

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

func (*GenesisState) XXX_Merge

func (m *GenesisState) XXX_Merge(src proto.Message)

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	// UpdateParams updates the parameters of the x/csr module.
	UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error)
}

MsgClient is the client API for Msg service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgServer

type MsgServer interface {
	// UpdateParams updates the parameters of the x/csr module.
	UpdateParams(context.Context, *MsgUpdateParams) (*MsgUpdateParamsResponse, error)
}

MsgServer is the server API for Msg service.

type MsgUpdateParams

type MsgUpdateParams struct {
	// authority is the address that controls the module (defaults to x/gov unless
	// overwritten).
	Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"`
	// params defines the x/csr parameters to update.
	//
	// NOTE: All parameters must be supplied.
	Params Params `protobuf:"bytes,2,opt,name=params,proto3" json:"params"`
}

func (*MsgUpdateParams) Descriptor

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

func (*MsgUpdateParams) GetAuthority

func (m *MsgUpdateParams) GetAuthority() string

func (*MsgUpdateParams) GetParams

func (m *MsgUpdateParams) GetParams() Params

func (*MsgUpdateParams) Marshal

func (m *MsgUpdateParams) Marshal() (dAtA []byte, err error)

func (*MsgUpdateParams) MarshalTo

func (m *MsgUpdateParams) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateParams) MarshalToSizedBuffer

func (m *MsgUpdateParams) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateParams) ProtoMessage

func (*MsgUpdateParams) ProtoMessage()

func (*MsgUpdateParams) Reset

func (m *MsgUpdateParams) Reset()

func (*MsgUpdateParams) Size

func (m *MsgUpdateParams) Size() (n int)

func (*MsgUpdateParams) String

func (m *MsgUpdateParams) String() string

func (*MsgUpdateParams) Unmarshal

func (m *MsgUpdateParams) Unmarshal(dAtA []byte) error

func (*MsgUpdateParams) XXX_DiscardUnknown

func (m *MsgUpdateParams) XXX_DiscardUnknown()

func (*MsgUpdateParams) XXX_Marshal

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

func (*MsgUpdateParams) XXX_Merge

func (m *MsgUpdateParams) XXX_Merge(src proto.Message)

func (*MsgUpdateParams) XXX_Size

func (m *MsgUpdateParams) XXX_Size() int

func (*MsgUpdateParams) XXX_Unmarshal

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

type MsgUpdateParamsResponse

type MsgUpdateParamsResponse struct {
}

MsgUpdateParamsResponse defines the response structure for executing a MsgUpdateParams message.

Since: cosmos-sdk 0.47

func (*MsgUpdateParamsResponse) Descriptor

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

func (*MsgUpdateParamsResponse) Marshal

func (m *MsgUpdateParamsResponse) Marshal() (dAtA []byte, err error)

func (*MsgUpdateParamsResponse) MarshalTo

func (m *MsgUpdateParamsResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateParamsResponse) MarshalToSizedBuffer

func (m *MsgUpdateParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateParamsResponse) ProtoMessage

func (*MsgUpdateParamsResponse) ProtoMessage()

func (*MsgUpdateParamsResponse) Reset

func (m *MsgUpdateParamsResponse) Reset()

func (*MsgUpdateParamsResponse) Size

func (m *MsgUpdateParamsResponse) Size() (n int)

func (*MsgUpdateParamsResponse) String

func (m *MsgUpdateParamsResponse) String() string

func (*MsgUpdateParamsResponse) Unmarshal

func (m *MsgUpdateParamsResponse) Unmarshal(dAtA []byte) error

func (*MsgUpdateParamsResponse) XXX_DiscardUnknown

func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown()

func (*MsgUpdateParamsResponse) XXX_Marshal

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

func (*MsgUpdateParamsResponse) XXX_Merge

func (m *MsgUpdateParamsResponse) XXX_Merge(src proto.Message)

func (*MsgUpdateParamsResponse) XXX_Size

func (m *MsgUpdateParamsResponse) XXX_Size() int

func (*MsgUpdateParamsResponse) XXX_Unmarshal

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

type Params

type Params struct {
	// boolean to enable the csr module
	EnableCsr bool `protobuf:"varint,1,opt,name=enable_csr,json=enableCsr,proto3" json:"enable_csr,omitempty"`
	// decimal to determine the transaction fee split between network operators
	// (validators) and CSR
	CsrShares cosmossdk_io_math.LegacyDec `protobuf:"bytes,2,opt,name=csr_shares,json=csrShares,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"csr_shares"`
}

Params holds parameters for the csr module

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams(enableCSR bool, csrShares sdkmath.LegacyDec) Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) GetEnableCsr

func (m *Params) GetEnableCsr() bool

func (*Params) Marshal

func (m *Params) Marshal() (dAtA []byte, err error)

func (*Params) MarshalTo

func (m *Params) MarshalTo(dAtA []byte) (int, error)

func (*Params) MarshalToSizedBuffer

func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Params) ParamSetPairs

func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

func (m *Params) Size() (n int)

func (*Params) String

func (m *Params) String() string

func (*Params) Unmarshal

func (m *Params) Unmarshal(dAtA []byte) error

func (Params) Validate

func (p Params) Validate() error

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

func (m *Params) XXX_Merge(src proto.Message)

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type QueryCSRByContractRequest

type QueryCSRByContractRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

QueryCSRByContractRequest is the request type for the Query/CSRByContract RPC method.

func (*QueryCSRByContractRequest) Descriptor

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

func (*QueryCSRByContractRequest) GetAddress

func (m *QueryCSRByContractRequest) GetAddress() string

func (*QueryCSRByContractRequest) Marshal

func (m *QueryCSRByContractRequest) Marshal() (dAtA []byte, err error)

func (*QueryCSRByContractRequest) MarshalTo

func (m *QueryCSRByContractRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryCSRByContractRequest) MarshalToSizedBuffer

func (m *QueryCSRByContractRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryCSRByContractRequest) ProtoMessage

func (*QueryCSRByContractRequest) ProtoMessage()

func (*QueryCSRByContractRequest) Reset

func (m *QueryCSRByContractRequest) Reset()

func (*QueryCSRByContractRequest) Size

func (m *QueryCSRByContractRequest) Size() (n int)

func (*QueryCSRByContractRequest) String

func (m *QueryCSRByContractRequest) String() string

func (*QueryCSRByContractRequest) Unmarshal

func (m *QueryCSRByContractRequest) Unmarshal(dAtA []byte) error

func (*QueryCSRByContractRequest) XXX_DiscardUnknown

func (m *QueryCSRByContractRequest) XXX_DiscardUnknown()

func (*QueryCSRByContractRequest) XXX_Marshal

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

func (*QueryCSRByContractRequest) XXX_Merge

func (m *QueryCSRByContractRequest) XXX_Merge(src proto.Message)

func (*QueryCSRByContractRequest) XXX_Size

func (m *QueryCSRByContractRequest) XXX_Size() int

func (*QueryCSRByContractRequest) XXX_Unmarshal

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

type QueryCSRByContractResponse

type QueryCSRByContractResponse struct {
	// csr object queried by smart contract address
	Csr CSR `protobuf:"bytes,1,opt,name=csr,proto3" json:"csr"`
}

QueryCSRByContractResponse is the response type for the Query/CSRByContract RPC method.

func (*QueryCSRByContractResponse) Descriptor

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

func (*QueryCSRByContractResponse) GetCsr

func (m *QueryCSRByContractResponse) GetCsr() CSR

func (*QueryCSRByContractResponse) Marshal

func (m *QueryCSRByContractResponse) Marshal() (dAtA []byte, err error)

func (*QueryCSRByContractResponse) MarshalTo

func (m *QueryCSRByContractResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryCSRByContractResponse) MarshalToSizedBuffer

func (m *QueryCSRByContractResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryCSRByContractResponse) ProtoMessage

func (*QueryCSRByContractResponse) ProtoMessage()

func (*QueryCSRByContractResponse) Reset

func (m *QueryCSRByContractResponse) Reset()

func (*QueryCSRByContractResponse) Size

func (m *QueryCSRByContractResponse) Size() (n int)

func (*QueryCSRByContractResponse) String

func (m *QueryCSRByContractResponse) String() string

func (*QueryCSRByContractResponse) Unmarshal

func (m *QueryCSRByContractResponse) Unmarshal(dAtA []byte) error

func (*QueryCSRByContractResponse) XXX_DiscardUnknown

func (m *QueryCSRByContractResponse) XXX_DiscardUnknown()

func (*QueryCSRByContractResponse) XXX_Marshal

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

func (*QueryCSRByContractResponse) XXX_Merge

func (m *QueryCSRByContractResponse) XXX_Merge(src proto.Message)

func (*QueryCSRByContractResponse) XXX_Size

func (m *QueryCSRByContractResponse) XXX_Size() int

func (*QueryCSRByContractResponse) XXX_Unmarshal

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

type QueryCSRByNFTRequest

type QueryCSRByNFTRequest struct {
	NftId uint64 `protobuf:"varint,1,opt,name=nftId,proto3" json:"nftId,omitempty"`
}

QueryCSRByNFTRequest is the request type for the Query/CSRByNFT RPC method.

func (*QueryCSRByNFTRequest) Descriptor

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

func (*QueryCSRByNFTRequest) GetNftId

func (m *QueryCSRByNFTRequest) GetNftId() uint64

func (*QueryCSRByNFTRequest) Marshal

func (m *QueryCSRByNFTRequest) Marshal() (dAtA []byte, err error)

func (*QueryCSRByNFTRequest) MarshalTo

func (m *QueryCSRByNFTRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryCSRByNFTRequest) MarshalToSizedBuffer

func (m *QueryCSRByNFTRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryCSRByNFTRequest) ProtoMessage

func (*QueryCSRByNFTRequest) ProtoMessage()

func (*QueryCSRByNFTRequest) Reset

func (m *QueryCSRByNFTRequest) Reset()

func (*QueryCSRByNFTRequest) Size

func (m *QueryCSRByNFTRequest) Size() (n int)

func (*QueryCSRByNFTRequest) String

func (m *QueryCSRByNFTRequest) String() string

func (*QueryCSRByNFTRequest) Unmarshal

func (m *QueryCSRByNFTRequest) Unmarshal(dAtA []byte) error

func (*QueryCSRByNFTRequest) XXX_DiscardUnknown

func (m *QueryCSRByNFTRequest) XXX_DiscardUnknown()

func (*QueryCSRByNFTRequest) XXX_Marshal

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

func (*QueryCSRByNFTRequest) XXX_Merge

func (m *QueryCSRByNFTRequest) XXX_Merge(src proto.Message)

func (*QueryCSRByNFTRequest) XXX_Size

func (m *QueryCSRByNFTRequest) XXX_Size() int

func (*QueryCSRByNFTRequest) XXX_Unmarshal

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

type QueryCSRByNFTResponse

type QueryCSRByNFTResponse struct {
	// csr object queried by nft id
	Csr CSR `protobuf:"bytes,1,opt,name=csr,proto3" json:"csr"`
}

QueryCSRByNFTResponse is the response type for the Query/CSRByNFT RPC method.

func (*QueryCSRByNFTResponse) Descriptor

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

func (*QueryCSRByNFTResponse) GetCsr

func (m *QueryCSRByNFTResponse) GetCsr() CSR

func (*QueryCSRByNFTResponse) Marshal

func (m *QueryCSRByNFTResponse) Marshal() (dAtA []byte, err error)

func (*QueryCSRByNFTResponse) MarshalTo

func (m *QueryCSRByNFTResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryCSRByNFTResponse) MarshalToSizedBuffer

func (m *QueryCSRByNFTResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryCSRByNFTResponse) ProtoMessage

func (*QueryCSRByNFTResponse) ProtoMessage()

func (*QueryCSRByNFTResponse) Reset

func (m *QueryCSRByNFTResponse) Reset()

func (*QueryCSRByNFTResponse) Size

func (m *QueryCSRByNFTResponse) Size() (n int)

func (*QueryCSRByNFTResponse) String

func (m *QueryCSRByNFTResponse) String() string

func (*QueryCSRByNFTResponse) Unmarshal

func (m *QueryCSRByNFTResponse) Unmarshal(dAtA []byte) error

func (*QueryCSRByNFTResponse) XXX_DiscardUnknown

func (m *QueryCSRByNFTResponse) XXX_DiscardUnknown()

func (*QueryCSRByNFTResponse) XXX_Marshal

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

func (*QueryCSRByNFTResponse) XXX_Merge

func (m *QueryCSRByNFTResponse) XXX_Merge(src proto.Message)

func (*QueryCSRByNFTResponse) XXX_Size

func (m *QueryCSRByNFTResponse) XXX_Size() int

func (*QueryCSRByNFTResponse) XXX_Unmarshal

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

type QueryCSRsRequest

type QueryCSRsRequest struct {
	// pagination defines an optional pagination for the request.
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryCSRsRequest is the request type for the Query/CSRs RPC method.

func (*QueryCSRsRequest) Descriptor

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

func (*QueryCSRsRequest) GetPagination

func (m *QueryCSRsRequest) GetPagination() *query.PageRequest

func (*QueryCSRsRequest) Marshal

func (m *QueryCSRsRequest) Marshal() (dAtA []byte, err error)

func (*QueryCSRsRequest) MarshalTo

func (m *QueryCSRsRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryCSRsRequest) MarshalToSizedBuffer

func (m *QueryCSRsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryCSRsRequest) ProtoMessage

func (*QueryCSRsRequest) ProtoMessage()

func (*QueryCSRsRequest) Reset

func (m *QueryCSRsRequest) Reset()

func (*QueryCSRsRequest) Size

func (m *QueryCSRsRequest) Size() (n int)

func (*QueryCSRsRequest) String

func (m *QueryCSRsRequest) String() string

func (*QueryCSRsRequest) Unmarshal

func (m *QueryCSRsRequest) Unmarshal(dAtA []byte) error

func (*QueryCSRsRequest) XXX_DiscardUnknown

func (m *QueryCSRsRequest) XXX_DiscardUnknown()

func (*QueryCSRsRequest) XXX_Marshal

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

func (*QueryCSRsRequest) XXX_Merge

func (m *QueryCSRsRequest) XXX_Merge(src proto.Message)

func (*QueryCSRsRequest) XXX_Size

func (m *QueryCSRsRequest) XXX_Size() int

func (*QueryCSRsRequest) XXX_Unmarshal

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

type QueryCSRsResponse

type QueryCSRsResponse struct {
	Csrs []CSR `protobuf:"bytes,1,rep,name=csrs,proto3" json:"csrs"`
	// pagination for response
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryCSRsResponse is the response type for the Query/CSRs RPC method.

func (*QueryCSRsResponse) Descriptor

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

func (*QueryCSRsResponse) GetCsrs

func (m *QueryCSRsResponse) GetCsrs() []CSR

func (*QueryCSRsResponse) GetPagination

func (m *QueryCSRsResponse) GetPagination() *query.PageResponse

func (*QueryCSRsResponse) Marshal

func (m *QueryCSRsResponse) Marshal() (dAtA []byte, err error)

func (*QueryCSRsResponse) MarshalTo

func (m *QueryCSRsResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryCSRsResponse) MarshalToSizedBuffer

func (m *QueryCSRsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryCSRsResponse) ProtoMessage

func (*QueryCSRsResponse) ProtoMessage()

func (*QueryCSRsResponse) Reset

func (m *QueryCSRsResponse) Reset()

func (*QueryCSRsResponse) Size

func (m *QueryCSRsResponse) Size() (n int)

func (*QueryCSRsResponse) String

func (m *QueryCSRsResponse) String() string

func (*QueryCSRsResponse) Unmarshal

func (m *QueryCSRsResponse) Unmarshal(dAtA []byte) error

func (*QueryCSRsResponse) XXX_DiscardUnknown

func (m *QueryCSRsResponse) XXX_DiscardUnknown()

func (*QueryCSRsResponse) XXX_Marshal

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

func (*QueryCSRsResponse) XXX_Merge

func (m *QueryCSRsResponse) XXX_Merge(src proto.Message)

func (*QueryCSRsResponse) XXX_Size

func (m *QueryCSRsResponse) XXX_Size() int

func (*QueryCSRsResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// query all registered CSRs
	CSRs(ctx context.Context, in *QueryCSRsRequest, opts ...grpc.CallOption) (*QueryCSRsResponse, error)
	// query a specific CSR by the nftId
	CSRByNFT(ctx context.Context, in *QueryCSRByNFTRequest, opts ...grpc.CallOption) (*QueryCSRByNFTResponse, error)
	// query a CSR by smart contract address
	CSRByContract(ctx context.Context, in *QueryCSRByContractRequest, opts ...grpc.CallOption) (*QueryCSRByContractResponse, error)
	// query the turnstile address
	Turnstile(ctx context.Context, in *QueryTurnstileRequest, opts ...grpc.CallOption) (*QueryTurnstileResponse, error)
}

QueryClient is the client API for Query service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewQueryClient

func NewQueryClient(cc grpc1.ClientConn) QueryClient

type QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParamsRequest is the request type for the Query/Params RPC method.

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error)

func (*QueryParamsRequest) MarshalTo

func (m *QueryParamsRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryParamsRequest) MarshalToSizedBuffer

func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

func (m *QueryParamsRequest) Size() (n int)

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

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

func (*QueryParamsRequest) XXX_Merge

func (m *QueryParamsRequest) XXX_Merge(src proto.Message)

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

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

type QueryParamsResponse

type QueryParamsResponse struct {
	// params holds all the parameters of this module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

QueryParamsResponse is the response type for the Query/Params RPC method.

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error)

func (*QueryParamsResponse) MarshalTo

func (m *QueryParamsResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryParamsResponse) MarshalToSizedBuffer

func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

func (m *QueryParamsResponse) Size() (n int)

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

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

func (*QueryParamsResponse) XXX_Merge

func (m *QueryParamsResponse) XXX_Merge(src proto.Message)

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// query all registered CSRs
	CSRs(context.Context, *QueryCSRsRequest) (*QueryCSRsResponse, error)
	// query a specific CSR by the nftId
	CSRByNFT(context.Context, *QueryCSRByNFTRequest) (*QueryCSRByNFTResponse, error)
	// query a CSR by smart contract address
	CSRByContract(context.Context, *QueryCSRByContractRequest) (*QueryCSRByContractResponse, error)
	// query the turnstile address
	Turnstile(context.Context, *QueryTurnstileRequest) (*QueryTurnstileResponse, error)
}

QueryServer is the server API for Query service.

type QueryTurnstileRequest

type QueryTurnstileRequest struct {
}

QueryTurnstileRequest is the request type for the Query/Turnstile RPC method.

func (*QueryTurnstileRequest) Descriptor

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

func (*QueryTurnstileRequest) Marshal

func (m *QueryTurnstileRequest) Marshal() (dAtA []byte, err error)

func (*QueryTurnstileRequest) MarshalTo

func (m *QueryTurnstileRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryTurnstileRequest) MarshalToSizedBuffer

func (m *QueryTurnstileRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTurnstileRequest) ProtoMessage

func (*QueryTurnstileRequest) ProtoMessage()

func (*QueryTurnstileRequest) Reset

func (m *QueryTurnstileRequest) Reset()

func (*QueryTurnstileRequest) Size

func (m *QueryTurnstileRequest) Size() (n int)

func (*QueryTurnstileRequest) String

func (m *QueryTurnstileRequest) String() string

func (*QueryTurnstileRequest) Unmarshal

func (m *QueryTurnstileRequest) Unmarshal(dAtA []byte) error

func (*QueryTurnstileRequest) XXX_DiscardUnknown

func (m *QueryTurnstileRequest) XXX_DiscardUnknown()

func (*QueryTurnstileRequest) XXX_Marshal

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

func (*QueryTurnstileRequest) XXX_Merge

func (m *QueryTurnstileRequest) XXX_Merge(src proto.Message)

func (*QueryTurnstileRequest) XXX_Size

func (m *QueryTurnstileRequest) XXX_Size() int

func (*QueryTurnstileRequest) XXX_Unmarshal

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

type QueryTurnstileResponse

type QueryTurnstileResponse struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

QueryTurnstileResponse is the response type for the Query/Turnstile RPC method.

func (*QueryTurnstileResponse) Descriptor

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

func (*QueryTurnstileResponse) GetAddress

func (m *QueryTurnstileResponse) GetAddress() string

func (*QueryTurnstileResponse) Marshal

func (m *QueryTurnstileResponse) Marshal() (dAtA []byte, err error)

func (*QueryTurnstileResponse) MarshalTo

func (m *QueryTurnstileResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryTurnstileResponse) MarshalToSizedBuffer

func (m *QueryTurnstileResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTurnstileResponse) ProtoMessage

func (*QueryTurnstileResponse) ProtoMessage()

func (*QueryTurnstileResponse) Reset

func (m *QueryTurnstileResponse) Reset()

func (*QueryTurnstileResponse) Size

func (m *QueryTurnstileResponse) Size() (n int)

func (*QueryTurnstileResponse) String

func (m *QueryTurnstileResponse) String() string

func (*QueryTurnstileResponse) Unmarshal

func (m *QueryTurnstileResponse) Unmarshal(dAtA []byte) error

func (*QueryTurnstileResponse) XXX_DiscardUnknown

func (m *QueryTurnstileResponse) XXX_DiscardUnknown()

func (*QueryTurnstileResponse) XXX_Marshal

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

func (*QueryTurnstileResponse) XXX_Merge

func (m *QueryTurnstileResponse) XXX_Merge(src proto.Message)

func (*QueryTurnstileResponse) XXX_Size

func (m *QueryTurnstileResponse) XXX_Size() int

func (*QueryTurnstileResponse) XXX_Unmarshal

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

type RegisterCSREvent

type RegisterCSREvent struct {
	SmartContract common.Address
	Recipient     common.Address
	TokenId       *big.Int
}

Register Event that is emitted from the Turnstile Smart Contract

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) UpdateParams

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) CSRByContract

func (*UnimplementedQueryServer) CSRByNFT

func (*UnimplementedQueryServer) CSRs

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) Turnstile

type UpdateCSREvent

type UpdateCSREvent struct {
	SmartContract common.Address
	TokenId       *big.Int
}

Update event that is emitted from the Turnstile Smart Contract

Jump to

Keyboard shortcuts

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