-
Notifications
You must be signed in to change notification settings - Fork 608
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat[CL]: add MsgCreateConcentratedPool #3607
feat[CL]: add MsgCreateConcentratedPool #3607
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work!
@p0mvn addressed most of your comments with a few followups! |
@czarcas7ic thanks, replied to the remaining unresolved discussions |
@p0mvn all concerns addressed! |
@p0mvn I got rid of the internal model package but for some reason proto check is failing on this as well as the go test. Is this normal? |
@czarcas7ic I think there might be an import that is still referencing the old package |
@p0mvn Just double checked and there isnt :/ |
I think that its a false error. It was passing before, and the changes I made dont effect this.. |
Yeah, I reverted back to a point where it was passing and it still fails, so I think its something to do with CI |
@@ -56,6 +57,14 @@ func (server msgServer) CreateStableswapPool(goCtx context.Context, msg *stables | |||
return &stableswap.MsgCreateStableswapPoolResponse{PoolID: poolId}, nil | |||
} | |||
|
|||
func (server msgServer) CreateConcentratedPool(goCtx context.Context, msg *cl.MsgCreateConcentratedPool) (*cl.MsgCreateConcentratedPoolResponse, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Based on discussions with Dev yesterday, we are going to move the "create pool" message servers to their respective modules. So this would go to CL. Can you try moving it please? It should still call the swaprouter's CreatePool
keeper method
Stableswap and GAMM will get moved to gamm but let's do that in another PR.
Closing in favor of #3687 |
Closes: #3245
What is the purpose of the change
Implementation of MsgCreateConcentratedPool and required wiring
Brief Changelog
(for example:)