MsgExitPool
Exit Pool Properties
Proto Definition
// ===================== MsgExitPool
message MsgExitPool {
option (amino.name) = "gamm/exit-pool";
option (cosmos.msg.v1.signer) = "sender";
string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ];
uint64 pool_id = 2 [ (gogoproto.moretags) = "yaml:\"pool_id\"" ];
string share_in_amount = 3 [
(gogoproto.customtype) = "cosmossdk.io/math.Int",
(gogoproto.moretags) = "yaml:\"share_in_amount\"",
(gogoproto.nullable) = false
];
repeated cosmos.base.v1beta1.Coin token_out_mins = 4 [
(gogoproto.moretags) = "yaml:\"token_out_min_amounts\"",
(gogoproto.nullable) = false
];
}
message MsgExitPoolResponse {
repeated cosmos.base.v1beta1.Coin token_out = 1 [
(gogoproto.moretags) = "yaml:\"token_out\"",
(gogoproto.nullable) = false
];
}JSON Example
Token Proportions
Slippage Protection
Exit Fees
LP Token Burning
Last updated