You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently MsgBuy implements a buy order selection with the option to create a direct buy order using sell_order_id. Once we have filters defined for baskets, we can enable filtered buy orders and implement buy order processing.
// Selection defines a buy order selection.
message Selection {
// sum defines the type of selection.
oneof sum {
// sell_order_id is the sell order ID against which the buyer is trying to buy.
// When sell_order_id is set, this is known as a direct buy order because it
// is placed directly against a specific sell order.
uint64 sell_order_id = 1;
// TODO: once we have filters defined for baskets, we can enable filtered
// buy orders which will involve full double-sided batch order matching
//
// filter selects credits to buy based upon the specified filter criteria.
// Filter filter = 2;
}
}
For Admin Use
Not duplicate issue
Appropriate labels applied
Appropriate contributors tagged
Contributor assigned/self-assigned
The text was updated successfully, but these errors were encountered:
Should this be included in the next upgrade? It seems like the feature is well enough specified where we could get support for non-direct buy orders in this same release.
Summary
Currently
MsgBuy
implements a buy orderselection
with the option to create a direct buy order usingsell_order_id
. Once we have filters defined for baskets, we can enable filtered buy orders and implement buy order processing.For Admin Use
The text was updated successfully, but these errors were encountered: