📚
Duality Documentation
  • What is Duality?
  • Concepts
    • AMMs and Orderbooks
    • Liquidity Pools
    • Ticks
    • TickLiquidity
      • Pool Reserves
        • Fees
      • Limit Order Tranches
    • Liquidity Iteration
    • Swaps
    • Overview
  • Module Documentation for Developers
    • DEX Module
      • Transaction Messages
        • Deposit
        • Withdrawal
        • MultiHop Swap
        • Place Limit Order
        • Cancel Limit Order Message
        • Withdraw Filled Limit Order
      • Queries
  • Dictionary
  • Advanced Concepts
    • Replicating Market Makers
    • Shared Liquidity
  • User Interface
Powered by GitBook
On this page
  • Overview
  • Withdraw Filled Limit Order Message
  • MsgWithdrawFilledLimitOrder
  1. Module Documentation for Developers
  2. DEX Module
  3. Transaction Messages

Withdraw Filled Limit Order

Explnation of the WithdrawFilledLimitOrder transaction

Overview

Once a limit order has been filled – either partially or in its entirety, it can be withdrawn at any time. Withdrawing from a limit order credits all available proceeds to the user. Withdraw can be called on a limit order multiple times as new proceeds become available. Withdraw Filled Limit Order Message

Withdraw Filled Limit Order Message

message MsgWithdrawFilledLimitOrder {
    string creator = 1;
    string tranche_key = 2;
}

MsgWithdrawFilledLimitOrder

Creator string (sdk.AccAddress)
Account which controls the limit order and to which proceeds are credited

TrancheKey string

TrancheKey for the target limit order

PreviousCancel Limit Order MessageNextQueries

Last updated 1 year ago