4 releases (2 stable)

1.0.4 Mar 26, 2024
1.0.4-astroport-v2 Dec 7, 2023
1.0.3 Oct 23, 2023
1.0.3-astroport-v2 Oct 31, 2023

#2847 in Magic Beans

Download history 2/week @ 2024-01-12 96/week @ 2024-01-19 143/week @ 2024-01-26 167/week @ 2024-02-02 485/week @ 2024-02-09 99/week @ 2024-02-16 135/week @ 2024-02-23 160/week @ 2024-03-01 100/week @ 2024-03-08 76/week @ 2024-03-15 168/week @ 2024-03-22 92/week @ 2024-03-29 136/week @ 2024-04-05

498 downloads per month
Used in 4 crates (via cw-it)

GPL-3.0-only

525KB
11K SLoC

Astroport Liquidity Manager

The Astroport Liquidity Manager is a contract that allows users to provide and withdraw liquidity from the Astroport xyk and stable pools with additional slippage limit enforcement. This contract is meant to be non-upgradable and standalone. It depends only on the actual Astroport factory address. Liquidity Manager also exposes provide/withdraw simulation queries for xyk and stable pools.


InstantiateMsg

Initializes the contract with the Astroport factory contract address.

{
  "astroport_factory": "wasm1..."
}

ExecuteMsg

receive

CW20 receive msg. Handles only withdraw messages which should come from Astroport LP tokens.

{
  "receive": {
    "sender": "wasm...",
    "amount": "123",
    "msg": "<base64_encoded_json_string>"
  }
}

where <base64_encoded_json_string> is a base64 encoded json string of the following format:

{
  "withdraw_liquidity": {
    "pair_msg": {
      "withdraw_liquidity": {}
    },
    "min_assets_to_receive": [
      {
        "info": {
          "native_token": {
            "denom": "uusd"
          }
        },
        "amount": "100000"
      },
      {
        "info": {
          "token": {
            "contract_addr": "wasm1...cw20address"
          }
        },
        "amount": "100000"
      }
    ]
  }
}

min_assets_to_receive enforces after-withdraw check that the user receives at least the specified amount of assets.

provide_liquidity

Provides liquidity through Liquidity Manager with slippage limit enforcement. Handles XYK pair imbalanced provide and returns excess assets to the user.

{
  "provide_liquidity": {
    "pair_addr": "wasm1...",
    "pair_msg": {
      "provide_liquidity": {
        "assets": [
          {
            "info": {
              "native_token": {
                "denom": "uusd"
              }
            },
            "amount": "100000"
          },
          {
            "info": {
              "token": {
                "contract_addr": "wasm1...cw20address"
              }
            },
            "amount": "100000"
          }
        ],
        "slippage_tolerance": "0.02",
        "auto_stake": true,
        "receiver": "wasm1...addr"
      }
    },
    "min_lp_to_receive": "1000"
  }
}

pair_msg is equal to original Astroport provide message for all pools. min_lp_to_receive enforces after-provide check that the user receives at least the specified amount of LP tokens.

QueryMsg

simulate

Simulates liquidity provide or withdraw.

Provide simulation example:

{
  "simulate_provide": {
    "pair_addr": "wasm1...addr",
    "pair_msg": {
      "provide_liquidity": {
        "assets": [
          {
            "info": {
              "native_token": {
                "denom": "uusd"
              }
            },
            "amount": "100000"
          },
          {
            "info": {
              "token": {
                "contract_addr": "wasm1...cw20address"
              }
            },
            "amount": "100000"
          }
        ],
        "slippage_tolerance": "0.02",
        "auto_stake": true,
        "receiver": "wasm1...addr"
      }
    }
  }
}

Withdraw simulation example:

{
  "simulate_withdraw": {
    "pair_addr": "wasm1...addr",
    "lp_tokens": "1000"
  }
}

Dependencies

~8.5MB
~188K SLoC