Documentation ¶
Index ¶
- func GetSessionsIDBytes(id uint64) []byte
- func GetSessionsIDFromBytes(bz []byte) uint64
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) AccountRegistration(goCtx context.Context, req *types.QueryGetAccountRegistrationRequest) (*types.QueryGetAccountRegistrationResponse, error)
- func (k Keeper) AccountRegistrationAll(goCtx context.Context, req *types.QueryAllAccountRegistrationRequest) (*types.QueryAllAccountRegistrationResponse, error)
- func (k Keeper) GetAccountRegistration(ctx sdk.Context, address string) (val types.AccountRegistration, found bool)
- func (k Keeper) GetAccountRegistrationCount(ctx sdk.Context) uint64
- func (k Keeper) GetAllAccountRegistration(ctx sdk.Context) []types.AccountRegistration
- func (k Keeper) GetAllMarketData(ctx sdk.Context) []types.MarketData
- func (k Keeper) GetAllOrderMassStatus(ctx sdk.Context) (list []types.OrderMassStatus)
- func (k Keeper) GetAllQuote(ctx sdk.Context) (list []types.Quote)
- func (k Keeper) GetAllSecurity(ctx sdk.Context) (list []types.Security)
- func (k Keeper) GetAllSecurityList(ctx sdk.Context) (list []types.SecurityList)
- func (k Keeper) GetAllSecurityStatus(ctx sdk.Context) (list []types.SecurityStatus)
- func (k Keeper) GetAllSecurityTypes(ctx sdk.Context) (list []types.SecurityTypes)
- func (k Keeper) GetAllSessions(ctx sdk.Context) (list []types.Sessions)
- func (k Keeper) GetAllTradeCapture(ctx sdk.Context) (list []types.TradeCapture)
- func (k Keeper) GetAllTradingSession(ctx sdk.Context) (list []types.TradingSession)
- func (k Keeper) GetAllTradingSessionList(ctx sdk.Context) (list []types.TradingSessionList)
- func (k Keeper) GetMarketData(ctx sdk.Context, mdReqID string) (val types.MarketData, found bool)
- func (k Keeper) GetMarketDataCount(ctx sdk.Context) uint64
- func (k Keeper) GetOrderMassStatus(ctx sdk.Context, massStatusReqID string) (val types.OrderMassStatus, found bool)
- func (k Keeper) GetOrderMassStatusCount(ctx sdk.Context) uint64
- func (k Keeper) GetOrders(ctx sdk.Context, clOrdID string) (val types.Orders, found bool)
- func (k Keeper) GetOrdersCancelReject(ctx sdk.Context, clOrdID string) (val types.OrdersCancelReject, found bool)
- func (k Keeper) GetOrdersCancelRequest(ctx sdk.Context, clOrdID string) (val types.OrdersCancelRequest, found bool)
- func (k Keeper) GetOrdersExecutionReport(ctx sdk.Context, clOrdID string) (val types.OrdersExecutionReport, found bool)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) GetQuote(ctx sdk.Context, quoteReqID string) (val types.Quote, found bool)
- func (k Keeper) GetSecurity(ctx sdk.Context, securityReqID string) (val types.Security, found bool)
- func (k Keeper) GetSecurityCount(ctx sdk.Context) uint64
- func (k Keeper) GetSecurityList(ctx sdk.Context, securityReqID string) (val types.SecurityList, found bool)
- func (k Keeper) GetSecurityListCount(ctx sdk.Context) uint64
- func (k Keeper) GetSecurityStatus(ctx sdk.Context, securityStatusReqID string) (val types.SecurityStatus, found bool)
- func (k Keeper) GetSecurityStatusCount(ctx sdk.Context) uint64
- func (k Keeper) GetSecurityTypes(ctx sdk.Context, securityReqID string) (val types.SecurityTypes, found bool)
- func (k Keeper) GetSecurityTypesCount(ctx sdk.Context) uint64
- func (k Keeper) GetSessionLogout(ctx sdk.Context, sessionID string) (val types.SessionLogout, found bool)
- func (k Keeper) GetSessionReject(ctx sdk.Context, sessionID string) (val types.SessionReject, found bool)
- func (k Keeper) GetSessions(ctx sdk.Context, sessionID string) (val types.Sessions, found bool)
- func (k Keeper) GetSessionsCount(ctx sdk.Context) uint64
- func (k Keeper) GetTradeCapture(ctx sdk.Context, tradeReportID string) (val types.TradeCapture, found bool)
- func (k Keeper) GetTradeCaptureCount(ctx sdk.Context) uint64
- func (k Keeper) GetTradingSession(ctx sdk.Context, tradSesReqID string) (val types.TradingSession, found bool)
- func (k Keeper) GetTradingSessionCount(ctx sdk.Context) uint64
- func (k Keeper) GetTradingSessionList(ctx sdk.Context, tradSesReqID string) (val types.TradingSessionList, found bool)
- func (k Keeper) GetTradingSessionListCount(ctx sdk.Context) uint64
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) MarketData(goCtx context.Context, req *types.QueryGetMarketDataRequest) (*types.QueryGetMarketDataResponse, error)
- func (k Keeper) MarketDataAll(goCtx context.Context, req *types.QueryAllMarketDataRequest) (*types.QueryAllMarketDataResponse, error)
- func (k Keeper) OrderMassStatus(goCtx context.Context, req *types.QueryGetOrderMassStatusRequest) (*types.QueryGetOrderMassStatusResponse, error)
- func (k Keeper) OrderMassStatusAll(goCtx context.Context, req *types.QueryAllOrderMassStatusRequest) (*types.QueryAllOrderMassStatusResponse, error)
- func (k Keeper) Orders(goCtx context.Context, req *types.QueryGetOrdersRequest) (*types.QueryGetOrdersResponse, error)
- func (k Keeper) OrdersAll(goCtx context.Context, req *types.QueryAllOrdersRequest) (*types.QueryAllOrdersResponse, error)
- func (k Keeper) OrdersByAddress(goCtx context.Context, req *types.QueryGetOrdersByAddressRequest) (*types.QueryGetOrdersByAddressResponse, error)
- func (k Keeper) OrdersCancelReject(goCtx context.Context, req *types.QueryGetOrdersCancelRejectRequest) (*types.QueryGetOrdersCancelRejectResponse, error)
- func (k Keeper) OrdersCancelRejectAll(goCtx context.Context, req *types.QueryAllOrdersCancelRejectRequest) (*types.QueryAllOrdersCancelRejectResponse, error)
- func (k Keeper) OrdersCancelRequest(goCtx context.Context, req *types.QueryGetOrdersCancelRequestRequest) (*types.QueryGetOrdersCancelRequestResponse, error)
- func (k Keeper) OrdersCancelRequestAll(goCtx context.Context, req *types.QueryAllOrdersCancelRequestRequest) (*types.QueryAllOrdersCancelRequestResponse, error)
- func (k Keeper) OrdersExecutionReport(goCtx context.Context, req *types.QueryGetOrdersExecutionReportRequest) (*types.QueryGetOrdersExecutionReportResponse, error)
- func (k Keeper) OrdersExecutionReportAll(goCtx context.Context, req *types.QueryAllOrdersExecutionReportRequest) (*types.QueryAllOrdersExecutionReportResponse, error)
- func (k Keeper) OrdersExecutionReportByAddress(goCtx context.Context, ...) (*types.QueryGetOrdersExecutionReportByAddressResponse, error)
- func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) Quote(goCtx context.Context, req *types.QueryGetQuoteRequest) (*types.QueryGetQuoteResponse, error)
- func (k Keeper) QuoteAll(goCtx context.Context, req *types.QueryAllQuoteRequest) (*types.QueryAllQuoteResponse, error)
- func (k Keeper) QuotesBySessionID(goCtx context.Context, req *types.QuerySessionByIDQuoteRequest) (*types.QuerySessionByIDQuoteResponse, error)
- func (k Keeper) RemoveAccountRegistration(ctx sdk.Context, address string)
- func (k Keeper) RemoveMarketData(ctx sdk.Context, mdReqID string)
- func (k Keeper) RemoveOrderMassStatus(ctx sdk.Context, massStatusReqID string)
- func (k Keeper) RemoveOrders(ctx sdk.Context, clOrdID string)
- func (k Keeper) RemoveOrdersCancelReject(ctx sdk.Context, clOrdID string)
- func (k Keeper) RemoveOrdersCancelRequest(ctx sdk.Context, clOrdID string)
- func (k Keeper) RemoveOrdersExecutionReport(ctx sdk.Context, clOrdID string)
- func (k Keeper) RemoveQuote(ctx sdk.Context, quoteReqID string)
- func (k Keeper) RemoveSecurity(ctx sdk.Context, securityReqID string)
- func (k Keeper) RemoveSecurityList(ctx sdk.Context, securityReqID string)
- func (k Keeper) RemoveSecurityStatus(ctx sdk.Context, securityStatusReqID string)
- func (k Keeper) RemoveSecurityTypes(ctx sdk.Context, securityReqID string)
- func (k Keeper) RemoveSessions(ctx sdk.Context, sessionID string)
- func (k Keeper) RemoveTradeCapture(ctx sdk.Context, tradeReportID string)
- func (k Keeper) RemoveTradingSession(ctx sdk.Context, tradSesReqID string)
- func (k Keeper) RemoveTradingSessionList(ctx sdk.Context, tradSesReqID string)
- func (k Keeper) Security(goCtx context.Context, req *types.QueryGetSecurityRequest) (*types.QueryGetSecurityResponse, error)
- func (k Keeper) SecurityAll(goCtx context.Context, req *types.QueryAllSecurityRequest) (*types.QueryAllSecurityResponse, error)
- func (k Keeper) SecurityList(goCtx context.Context, req *types.QueryGetSecurityListRequest) (*types.QueryGetSecurityListResponse, error)
- func (k Keeper) SecurityListAll(goCtx context.Context, req *types.QueryAllSecurityListRequest) (*types.QueryAllSecurityListResponse, error)
- func (k Keeper) SecurityStatus(goCtx context.Context, req *types.QueryGetSecurityStatusRequest) (*types.QueryGetSecurityStatusResponse, error)
- func (k Keeper) SecurityStatusAll(goCtx context.Context, req *types.QueryAllSecurityStatusRequest) (*types.QueryAllSecurityStatusResponse, error)
- func (k Keeper) SecurityTypes(goCtx context.Context, req *types.QueryGetSecurityTypesRequest) (*types.QueryGetSecurityTypesResponse, error)
- func (k Keeper) SecurityTypesAll(goCtx context.Context, req *types.QueryAllSecurityTypesRequest) (*types.QueryAllSecurityTypesResponse, error)
- func (k Keeper) SessionLogout(goCtx context.Context, req *types.QueryGetSessionLogoutRequest) (*types.QueryGetSessionLogoutResponse, error)
- func (k Keeper) SessionLogoutAll(goCtx context.Context, req *types.QueryAllSessionLogoutRequest) (*types.QueryAllSessionLogoutResponse, error)
- func (k Keeper) SessionReject(goCtx context.Context, req *types.QueryGetSessionRejectRequest) (*types.QueryGetSessionRejectResponse, error)
- func (k Keeper) SessionRejectAll(goCtx context.Context, req *types.QueryAllSessionRejectRequest) (*types.QueryAllSessionRejectResponse, error)
- func (k Keeper) Sessions(goCtx context.Context, req *types.QueryGetSessionsRequest) (*types.QueryGetSessionsResponse, error)
- func (k Keeper) SessionsAll(goCtx context.Context, req *types.QueryAllSessionsRequest) (*types.QueryAllSessionsResponse, error)
- func (k Keeper) SetAccountRegistration(ctx sdk.Context, address string, accountRegistration types.AccountRegistration)
- func (k Keeper) SetAccountRegistrationCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetMarketData(ctx sdk.Context, mdReqID string, marketData types.MarketData)
- func (k Keeper) SetMarketDataCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetOrderMassStatus(ctx sdk.Context, massStatusReqID string, orderMassStatus types.OrderMassStatus)
- func (k Keeper) SetOrderMassStatusCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetOrders(ctx sdk.Context, clOrdID string, orders types.Orders)
- func (k Keeper) SetOrdersCancelReject(ctx sdk.Context, clOrdID string, ordersCancelReject types.OrdersCancelReject)
- func (k Keeper) SetOrdersCancelRequest(ctx sdk.Context, clOrdID string, ordersCancelRequest types.OrdersCancelRequest)
- func (k Keeper) SetOrdersExecutionReport(ctx sdk.Context, clOrdID string, ...)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetQuote(ctx sdk.Context, quoteReqID string, quote types.Quote)
- func (k Keeper) SetSecurity(ctx sdk.Context, securityReqID string, security types.Security)
- func (k Keeper) SetSecurityCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetSecurityList(ctx sdk.Context, securityReqID string, securityList types.SecurityList)
- func (k Keeper) SetSecurityListCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetSecurityStatus(ctx sdk.Context, securityStatusReqID string, ...)
- func (k Keeper) SetSecurityStatusCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetSecurityTypes(ctx sdk.Context, securityReqID string, securityTypes types.SecurityTypes)
- func (k Keeper) SetSecurityTypesCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetSessionLogout(ctx sdk.Context, sessionID string, sessionLogout types.SessionLogout)
- func (k Keeper) SetSessionReject(ctx sdk.Context, sessionID string, sessionReject types.SessionReject)
- func (k Keeper) SetSessions(ctx sdk.Context, sessionID string, sessions types.Sessions)
- func (k Keeper) SetSessionsCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetTradeCapture(ctx sdk.Context, tradeReportID string, tradeCapture types.TradeCapture)
- func (k Keeper) SetTradeCaptureCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetTradingSession(ctx sdk.Context, tradSesReqID string, tradingSession types.TradingSession)
- func (k Keeper) SetTradingSessionCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetTradingSessionList(ctx sdk.Context, tradSesReqID string, ...)
- func (k Keeper) SetTradingSessionListCount(ctx sdk.Context, count uint64)
- func (k Keeper) TradeCapture(goCtx context.Context, req *types.QueryGetTradeCaptureRequest) (*types.QueryGetTradeCaptureResponse, error)
- func (k Keeper) TradeCaptureAll(goCtx context.Context, req *types.QueryAllTradeCaptureRequest) (*types.QueryAllTradeCaptureResponse, error)
- func (k Keeper) TradingSession(goCtx context.Context, req *types.QueryGetTradingSessionRequest) (*types.QueryGetTradingSessionResponse, error)
- func (k Keeper) TradingSessionAll(goCtx context.Context, req *types.QueryAllTradingSessionRequest) (*types.QueryAllTradingSessionResponse, error)
- func (k Keeper) TradingSessionList(goCtx context.Context, req *types.QueryGetTradingSessionListRequest) (*types.QueryGetTradingSessionListResponse, error)
- func (k Keeper) TradingSessionListAll(goCtx context.Context, req *types.QueryAllTradingSessionListRequest) (*types.QueryAllTradingSessionListResponse, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetSessionsIDBytes ¶
GetSessionsIDBytes returns the byte representation of the ID
func GetSessionsIDFromBytes ¶
GetSessionsIDFromBytes returns ID in uint64 format from a byte array
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.
Types ¶
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
func (Keeper) AccountRegistration ¶
func (k Keeper) AccountRegistration(goCtx context.Context, req *types.QueryGetAccountRegistrationRequest) (*types.QueryGetAccountRegistrationResponse, error)
func (Keeper) AccountRegistrationAll ¶
func (k Keeper) AccountRegistrationAll(goCtx context.Context, req *types.QueryAllAccountRegistrationRequest) (*types.QueryAllAccountRegistrationResponse, error)
func (Keeper) GetAccountRegistration ¶
func (k Keeper) GetAccountRegistration(ctx sdk.Context, address string) (val types.AccountRegistration, found bool)
GetAccountRegistration returns an accountRegistration using address
func (Keeper) GetAccountRegistrationCount ¶
GetAccountRegistrationCount get the total number of accountRegistration
func (Keeper) GetAllAccountRegistration ¶
func (k Keeper) GetAllAccountRegistration(ctx sdk.Context) []types.AccountRegistration
GetAllAccountRegistration returns all accountRegistration
func (Keeper) GetAllMarketData ¶
func (k Keeper) GetAllMarketData(ctx sdk.Context) []types.MarketData
GetAllMarketData returns all marketData
func (Keeper) GetAllOrderMassStatus ¶
func (k Keeper) GetAllOrderMassStatus(ctx sdk.Context) (list []types.OrderMassStatus)
GetAllOrderMassStatus returns all orderMassStatus
func (Keeper) GetAllQuote ¶
GetAllQuote returns all quote
func (Keeper) GetAllSecurity ¶
GetAllSecurity returns all security
func (Keeper) GetAllSecurityList ¶
func (k Keeper) GetAllSecurityList(ctx sdk.Context) (list []types.SecurityList)
GetAllSecurityList returns all securityList
func (Keeper) GetAllSecurityStatus ¶
func (k Keeper) GetAllSecurityStatus(ctx sdk.Context) (list []types.SecurityStatus)
GetAllSecurityStatus returns all securityStatus
func (Keeper) GetAllSecurityTypes ¶
func (k Keeper) GetAllSecurityTypes(ctx sdk.Context) (list []types.SecurityTypes)
GetAllSecurityTypes returns all securityTypes
func (Keeper) GetAllSessions ¶
GetAllSessions returns all sessions
func (Keeper) GetAllTradeCapture ¶
func (k Keeper) GetAllTradeCapture(ctx sdk.Context) (list []types.TradeCapture)
GetAllTradeCapture returns all tradeCapture
func (Keeper) GetAllTradingSession ¶
func (k Keeper) GetAllTradingSession(ctx sdk.Context) (list []types.TradingSession)
GetAllTradingSession returns all tradingSession
func (Keeper) GetAllTradingSessionList ¶
func (k Keeper) GetAllTradingSessionList(ctx sdk.Context) (list []types.TradingSessionList)
GetAllTradingSessionList returns all tradingSessionList
func (Keeper) GetMarketData ¶
GetMarketData returns a marketData from its mdReqID
func (Keeper) GetMarketDataCount ¶
GetMarketDataCount get the total number of marketData
func (Keeper) GetOrderMassStatus ¶
func (k Keeper) GetOrderMassStatus(ctx sdk.Context, massStatusReqID string) (val types.OrderMassStatus, found bool)
GetOrderMassStatus returns a orderMassStatus from its id
func (Keeper) GetOrderMassStatusCount ¶
GetOrderMassStatusCount get the total number of orderMassStatus
func (Keeper) GetOrdersCancelReject ¶
func (k Keeper) GetOrdersCancelReject(ctx sdk.Context, clOrdID string) (val types.OrdersCancelReject, found bool)
GetOrdersCancelReject returns an ordersCancelReject using clOrdID
func (Keeper) GetOrdersCancelRequest ¶
func (k Keeper) GetOrdersCancelRequest(ctx sdk.Context, clOrdID string) (val types.OrdersCancelRequest, found bool)
GetOrdersCancelRequest returns an ordersCancelRequest using clOrdID
func (Keeper) GetOrdersExecutionReport ¶
func (k Keeper) GetOrdersExecutionReport(ctx sdk.Context, clOrdID string) (val types.OrdersExecutionReport, found bool)
GetOrdersExecutionReport returns an ordersExecutionReport using clOrdID
func (Keeper) GetSecurity ¶
GetSecurity returns a security from its id
func (Keeper) GetSecurityCount ¶
GetSecurityCount get the total number of security
func (Keeper) GetSecurityList ¶
func (k Keeper) GetSecurityList(ctx sdk.Context, securityReqID string) (val types.SecurityList, found bool)
GetSecurityList returns a securityList from its id
func (Keeper) GetSecurityListCount ¶
GetSecurityListCount get the total number of securityList
func (Keeper) GetSecurityStatus ¶
func (k Keeper) GetSecurityStatus(ctx sdk.Context, securityStatusReqID string) (val types.SecurityStatus, found bool)
GetSecurityStatus returns a securityStatus using securityStatusReqID
func (Keeper) GetSecurityStatusCount ¶
GetSecurityStatusCount get the total number of securityStatus
func (Keeper) GetSecurityTypes ¶
func (k Keeper) GetSecurityTypes(ctx sdk.Context, securityReqID string) (val types.SecurityTypes, found bool)
GetSecurityTypes returns a securityTypes using securityReqID
func (Keeper) GetSecurityTypesCount ¶
GetSecurityTypesCount get the total number of securityTypes
func (Keeper) GetSessionLogout ¶
func (k Keeper) GetSessionLogout(ctx sdk.Context, sessionID string) (val types.SessionLogout, found bool)
GetSessionLogout returns a sessionLogout from its session name
func (Keeper) GetSessionReject ¶
func (k Keeper) GetSessionReject(ctx sdk.Context, sessionID string) (val types.SessionReject, found bool)
GetSessionReject returns a sessionReject from its sessionName
func (Keeper) GetSessions ¶
GetSessions returns a sessions from its id
func (Keeper) GetSessionsCount ¶
GetSessionsCount get the total number of sessions
func (Keeper) GetTradeCapture ¶
func (k Keeper) GetTradeCapture(ctx sdk.Context, tradeReportID string) (val types.TradeCapture, found bool)
GetTradeCapture returns a tradeCapture from its id
func (Keeper) GetTradeCaptureCount ¶
GetTradeCaptureCount get the total number of tradeCapture
func (Keeper) GetTradingSession ¶
func (k Keeper) GetTradingSession(ctx sdk.Context, tradSesReqID string) (val types.TradingSession, found bool)
GetTradingSession returns a tradingSession using tradSesReqID
func (Keeper) GetTradingSessionCount ¶
GetTradingSessionCount get the total number of tradingSession
func (Keeper) GetTradingSessionList ¶
func (k Keeper) GetTradingSessionList(ctx sdk.Context, tradSesReqID string) (val types.TradingSessionList, found bool)
GetTradingSessionList returns a tradingSessionList using tradSesReqID
func (Keeper) GetTradingSessionListCount ¶
GetTradingSessionListCount get the total number of tradingSessionList
func (Keeper) MarketData ¶
func (k Keeper) MarketData(goCtx context.Context, req *types.QueryGetMarketDataRequest) (*types.QueryGetMarketDataResponse, error)
func (Keeper) MarketDataAll ¶
func (k Keeper) MarketDataAll(goCtx context.Context, req *types.QueryAllMarketDataRequest) (*types.QueryAllMarketDataResponse, error)
func (Keeper) OrderMassStatus ¶
func (k Keeper) OrderMassStatus(goCtx context.Context, req *types.QueryGetOrderMassStatusRequest) (*types.QueryGetOrderMassStatusResponse, error)
func (Keeper) OrderMassStatusAll ¶
func (k Keeper) OrderMassStatusAll(goCtx context.Context, req *types.QueryAllOrderMassStatusRequest) (*types.QueryAllOrderMassStatusResponse, error)
func (Keeper) Orders ¶
func (k Keeper) Orders(goCtx context.Context, req *types.QueryGetOrdersRequest) (*types.QueryGetOrdersResponse, error)
func (Keeper) OrdersAll ¶
func (k Keeper) OrdersAll(goCtx context.Context, req *types.QueryAllOrdersRequest) (*types.QueryAllOrdersResponse, error)
func (Keeper) OrdersByAddress ¶
func (k Keeper) OrdersByAddress(goCtx context.Context, req *types.QueryGetOrdersByAddressRequest) (*types.QueryGetOrdersByAddressResponse, error)
func (Keeper) OrdersCancelReject ¶
func (k Keeper) OrdersCancelReject(goCtx context.Context, req *types.QueryGetOrdersCancelRejectRequest) (*types.QueryGetOrdersCancelRejectResponse, error)
func (Keeper) OrdersCancelRejectAll ¶
func (k Keeper) OrdersCancelRejectAll(goCtx context.Context, req *types.QueryAllOrdersCancelRejectRequest) (*types.QueryAllOrdersCancelRejectResponse, error)
func (Keeper) OrdersCancelRequest ¶
func (k Keeper) OrdersCancelRequest(goCtx context.Context, req *types.QueryGetOrdersCancelRequestRequest) (*types.QueryGetOrdersCancelRequestResponse, error)
func (Keeper) OrdersCancelRequestAll ¶
func (k Keeper) OrdersCancelRequestAll(goCtx context.Context, req *types.QueryAllOrdersCancelRequestRequest) (*types.QueryAllOrdersCancelRequestResponse, error)
func (Keeper) OrdersExecutionReport ¶
func (k Keeper) OrdersExecutionReport(goCtx context.Context, req *types.QueryGetOrdersExecutionReportRequest) (*types.QueryGetOrdersExecutionReportResponse, error)
func (Keeper) OrdersExecutionReportAll ¶
func (k Keeper) OrdersExecutionReportAll(goCtx context.Context, req *types.QueryAllOrdersExecutionReportRequest) (*types.QueryAllOrdersExecutionReportResponse, error)
func (Keeper) OrdersExecutionReportByAddress ¶
func (k Keeper) OrdersExecutionReportByAddress(goCtx context.Context, req *types.QueryGetOrdersExecutionReportByAddressRequest) (*types.QueryGetOrdersExecutionReportByAddressResponse, error)
func (Keeper) Params ¶
func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) Quote ¶
func (k Keeper) Quote(goCtx context.Context, req *types.QueryGetQuoteRequest) (*types.QueryGetQuoteResponse, error)
func (Keeper) QuoteAll ¶
func (k Keeper) QuoteAll(goCtx context.Context, req *types.QueryAllQuoteRequest) (*types.QueryAllQuoteResponse, error)
func (Keeper) QuotesBySessionID ¶
func (k Keeper) QuotesBySessionID(goCtx context.Context, req *types.QuerySessionByIDQuoteRequest) (*types.QuerySessionByIDQuoteResponse, error)
Query quotes by sessionID
func (Keeper) RemoveAccountRegistration ¶
RemoveAccountRegistration removes a accountRegistration from the store
func (Keeper) RemoveMarketData ¶
RemoveMarketData removes a marketData from the store
func (Keeper) RemoveOrderMassStatus ¶
RemoveOrderMassStatus removes a orderMassStatus from the store
func (Keeper) RemoveOrders ¶
RemoveOrders removes an order from the store
func (Keeper) RemoveOrdersCancelReject ¶
RemoveOrdersCancelReject removes an ordersCancelReject from the store
func (Keeper) RemoveOrdersCancelRequest ¶
RemoveOrdersCancelRequest removes an ordersCancelRequest from the store
func (Keeper) RemoveOrdersExecutionReport ¶
RemoveOrdersExecutionReport removes an ordersExecutionReport from the store
func (Keeper) RemoveQuote ¶
RemoveQuote removes a quote from the store
func (Keeper) RemoveSecurity ¶
RemoveSecurity removes a security from the store
func (Keeper) RemoveSecurityList ¶
RemoveSecurityList removes a securityList from the store
func (Keeper) RemoveSecurityStatus ¶
RemoveSecurityStatus removes a securityStatus from the store
func (Keeper) RemoveSecurityTypes ¶
RemoveSecurityTypes removes a securityTypes from the store
func (Keeper) RemoveSessions ¶
RemoveSessions removes a sessions from the store
func (Keeper) RemoveTradeCapture ¶
RemoveTradeCapture removes a tradeCapture from the store
func (Keeper) RemoveTradingSession ¶
RemoveTradingSession removes a tradingSession from the store
func (Keeper) RemoveTradingSessionList ¶
RemoveTradingSessionList removes a tradingSessionList from the store
func (Keeper) Security ¶
func (k Keeper) Security(goCtx context.Context, req *types.QueryGetSecurityRequest) (*types.QueryGetSecurityResponse, error)
func (Keeper) SecurityAll ¶
func (k Keeper) SecurityAll(goCtx context.Context, req *types.QueryAllSecurityRequest) (*types.QueryAllSecurityResponse, error)
func (Keeper) SecurityList ¶
func (k Keeper) SecurityList(goCtx context.Context, req *types.QueryGetSecurityListRequest) (*types.QueryGetSecurityListResponse, error)
func (Keeper) SecurityListAll ¶
func (k Keeper) SecurityListAll(goCtx context.Context, req *types.QueryAllSecurityListRequest) (*types.QueryAllSecurityListResponse, error)
func (Keeper) SecurityStatus ¶
func (k Keeper) SecurityStatus(goCtx context.Context, req *types.QueryGetSecurityStatusRequest) (*types.QueryGetSecurityStatusResponse, error)
func (Keeper) SecurityStatusAll ¶
func (k Keeper) SecurityStatusAll(goCtx context.Context, req *types.QueryAllSecurityStatusRequest) (*types.QueryAllSecurityStatusResponse, error)
func (Keeper) SecurityTypes ¶
func (k Keeper) SecurityTypes(goCtx context.Context, req *types.QueryGetSecurityTypesRequest) (*types.QueryGetSecurityTypesResponse, error)
func (Keeper) SecurityTypesAll ¶
func (k Keeper) SecurityTypesAll(goCtx context.Context, req *types.QueryAllSecurityTypesRequest) (*types.QueryAllSecurityTypesResponse, error)
func (Keeper) SessionLogout ¶
func (k Keeper) SessionLogout(goCtx context.Context, req *types.QueryGetSessionLogoutRequest) (*types.QueryGetSessionLogoutResponse, error)
func (Keeper) SessionLogoutAll ¶
func (k Keeper) SessionLogoutAll(goCtx context.Context, req *types.QueryAllSessionLogoutRequest) (*types.QueryAllSessionLogoutResponse, error)
func (Keeper) SessionReject ¶
func (k Keeper) SessionReject(goCtx context.Context, req *types.QueryGetSessionRejectRequest) (*types.QueryGetSessionRejectResponse, error)
func (Keeper) SessionRejectAll ¶
func (k Keeper) SessionRejectAll(goCtx context.Context, req *types.QueryAllSessionRejectRequest) (*types.QueryAllSessionRejectResponse, error)
func (Keeper) Sessions ¶
func (k Keeper) Sessions(goCtx context.Context, req *types.QueryGetSessionsRequest) (*types.QueryGetSessionsResponse, error)
func (Keeper) SessionsAll ¶
func (k Keeper) SessionsAll(goCtx context.Context, req *types.QueryAllSessionsRequest) (*types.QueryAllSessionsResponse, error)
func (Keeper) SetAccountRegistration ¶
func (k Keeper) SetAccountRegistration(ctx sdk.Context, address string, accountRegistration types.AccountRegistration)
SetAccountRegistration set a specific accountRegistration in the store
func (Keeper) SetAccountRegistrationCount ¶
SetAccountRegistrationCount set the total number of accountRegistration
func (Keeper) SetMarketData ¶
SetMarketData set a specific marketData in the store
func (Keeper) SetMarketDataCount ¶
SetMarketDataCount set the total number of marketData
func (Keeper) SetOrderMassStatus ¶
func (k Keeper) SetOrderMassStatus(ctx sdk.Context, massStatusReqID string, orderMassStatus types.OrderMassStatus)
SetOrderMassStatus set a specific orderMassStatus in the store
func (Keeper) SetOrderMassStatusCount ¶
SetOrderMassStatusCount set the total number of orderMassStatus
func (Keeper) SetOrdersCancelReject ¶
func (k Keeper) SetOrdersCancelReject(ctx sdk.Context, clOrdID string, ordersCancelReject types.OrdersCancelReject)
SetOrdersCancelReject set a specific ordersCancelReject in the store
func (Keeper) SetOrdersCancelRequest ¶
func (k Keeper) SetOrdersCancelRequest(ctx sdk.Context, clOrdID string, ordersCancelRequest types.OrdersCancelRequest)
SetOrdersCancelRequest set a specific ordersCancelRequest in the store
func (Keeper) SetOrdersExecutionReport ¶
func (k Keeper) SetOrdersExecutionReport(ctx sdk.Context, clOrdID string, ordersExecutionReport types.OrdersExecutionReport)
SetOrdersExecutionReport set a specific ordersExecutionReport in the store
func (Keeper) SetSecurity ¶
SetSecurity set a specific security in the store
func (Keeper) SetSecurityCount ¶
SetSecurityCount set the total number of security
func (Keeper) SetSecurityList ¶
func (k Keeper) SetSecurityList(ctx sdk.Context, securityReqID string, securityList types.SecurityList)
SetSecurityList set a specific securityList in the store
func (Keeper) SetSecurityListCount ¶
SetSecurityListCount set the total number of securityList
func (Keeper) SetSecurityStatus ¶
func (k Keeper) SetSecurityStatus(ctx sdk.Context, securityStatusReqID string, securityStatus types.SecurityStatus)
SetSecurityStatus set a specific securityStatus in the store
func (Keeper) SetSecurityStatusCount ¶
SetSecurityStatusCount set the total number of securityStatus
func (Keeper) SetSecurityTypes ¶
func (k Keeper) SetSecurityTypes(ctx sdk.Context, securityReqID string, securityTypes types.SecurityTypes)
SetSecurityTypes set a specific securityTypes in the store
func (Keeper) SetSecurityTypesCount ¶
SetSecurityTypesCount set the total number of securityTypes
func (Keeper) SetSessionLogout ¶
func (k Keeper) SetSessionLogout(ctx sdk.Context, sessionID string, sessionLogout types.SessionLogout)
SetSessionLogout set a specific sessionLogout in the store
func (Keeper) SetSessionReject ¶
func (k Keeper) SetSessionReject(ctx sdk.Context, sessionID string, sessionReject types.SessionReject)
SetSessionReject set a specific sessionReject in the store
func (Keeper) SetSessions ¶
SetSessions set a specific sessions in the store
func (Keeper) SetSessionsCount ¶
SetSessionsCount set the total number of sessions
func (Keeper) SetTradeCapture ¶
func (k Keeper) SetTradeCapture(ctx sdk.Context, tradeReportID string, tradeCapture types.TradeCapture)
SetTradeCapture set a specific tradeCapture in the store
func (Keeper) SetTradeCaptureCount ¶
SetTradeCaptureCount set the total number of tradeCapture
func (Keeper) SetTradingSession ¶
func (k Keeper) SetTradingSession(ctx sdk.Context, tradSesReqID string, tradingSession types.TradingSession)
SetTradingSession set a specific tradingSession in the store
func (Keeper) SetTradingSessionCount ¶
SetTradingSessionCount set the total number of tradingSession
func (Keeper) SetTradingSessionList ¶
func (k Keeper) SetTradingSessionList(ctx sdk.Context, tradSesReqID string, tradingSessionList types.TradingSessionList)
SetTradingSessionList set a specific tradingSessionList in the store
func (Keeper) SetTradingSessionListCount ¶
SetTradingSessionListCount set the total number of tradingSessionList
func (Keeper) TradeCapture ¶
func (k Keeper) TradeCapture(goCtx context.Context, req *types.QueryGetTradeCaptureRequest) (*types.QueryGetTradeCaptureResponse, error)
func (Keeper) TradeCaptureAll ¶
func (k Keeper) TradeCaptureAll(goCtx context.Context, req *types.QueryAllTradeCaptureRequest) (*types.QueryAllTradeCaptureResponse, error)
func (Keeper) TradingSession ¶
func (k Keeper) TradingSession(goCtx context.Context, req *types.QueryGetTradingSessionRequest) (*types.QueryGetTradingSessionResponse, error)
func (Keeper) TradingSessionAll ¶
func (k Keeper) TradingSessionAll(goCtx context.Context, req *types.QueryAllTradingSessionRequest) (*types.QueryAllTradingSessionResponse, error)
func (Keeper) TradingSessionList ¶
func (k Keeper) TradingSessionList(goCtx context.Context, req *types.QueryGetTradingSessionListRequest) (*types.QueryGetTradingSessionListResponse, error)
func (Keeper) TradingSessionListAll ¶
func (k Keeper) TradingSessionListAll(goCtx context.Context, req *types.QueryAllTradingSessionListRequest) (*types.QueryAllTradingSessionListResponse, error)
Source Files ¶
- account_registration.go
- keeper.go
- market_data.go
- msg_server.go
- msg_server_account.go
- msg_server_logon.go
- msg_server_logout.go
- msg_server_market_data.go
- msg_server_order.go
- msg_server_order_mass_status.go
- msg_server_quote.go
- msg_server_security_definition.go
- msg_server_security_list.go
- msg_server_security_status.go
- msg_server_security_types.go
- msg_server_trade_capture.go
- msg_server_trading_session.go
- msg_server_trading_session_list.go
- order_mass_status.go
- orders.go
- params.go
- query.go
- query_account_registration.go
- query_market_data.go
- query_order_mass_status.go
- query_orders.go
- query_params.go
- query_quote.go
- query_security.go
- query_security_list.go
- query_security_status.go
- query_security_types.go
- query_sessions.go
- query_trade_capture.go
- query_trading_session.go
- query_trading_session_list.go
- quote.go
- security.go
- security_list.go
- security_status.go
- security_types.go
- sessions.go
- trade_capture.go
- trading_session.go
- trading_session_list.go