1 stable release

1.1.0 Jul 20, 2023

#7 in #astro

Download history 22/week @ 2023-12-18 55/week @ 2024-01-08 87/week @ 2024-01-15 114/week @ 2024-01-22 284/week @ 2024-01-29 172/week @ 2024-02-05 407/week @ 2024-02-12 128/week @ 2024-02-19 102/week @ 2024-02-26 184/week @ 2024-03-04 106/week @ 2024-03-11 65/week @ 2024-03-18 73/week @ 2024-03-25 102/week @ 2024-04-01

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

MIT license

250KB
5K SLoC

Astroport xASTRO Staking

This staking contract allows ASTRO holders to stake their tokens in exchange for xASTRO. The amount of ASTRO they can claim later increases as accrued fees in the Maker contract get swapped to ASTRO which is then sent to stakers.


InstantiateMsg

Initializes the contract with the token code ID used by ASTRO and the ASTRO token address.

{
  "token_code_id": 123,
  "deposit_token_addr": "terra..."
}

ExecuteMsg

receive

CW20 receive msg.

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

Enter

Deposits ASTRO in the xASTRO staking contract.

Execute this message by calling the ASTRO token contract and use a message like this:

{
  "send": {
    "contract": <StakingContractAddress>,
    "amount": "999",
    "msg": "base64-encodedStringOfWithdrawMsg"
  }
}

In send.msg, you may encode this JSON string into base64 encoding:

{
  "enter": {}
}

leave

Burns xASTRO and unstakes underlying ASTRO (initial staked amount + accrued ASTRO since staking).

Execute this message by calling the xASTRO token contract and use a message like this:

{
  "send": {
    "contract": <StakingContractAddress>,
    "amount": "999",
    "msg": "base64-encodedStringOfWithdrawMsg"
  }
}

In send.msg you may encode this JSON string into base64 encoding:

{
  "leave": {}
}

QueryMsg

All query messages are described below. A custom struct is defined for each query response.

config

Returns the ASTRO and xASTRO addresses.

{
  "config": {}
}

get_total_shares

Returns the total amount of xASTRO tokens.

{
  "get_total_shares": {}
}

get_total_deposit

Returns the total amount of ASTRO deposits in the staking contract.

{
  "get_total_deposit": {}
}

Dependencies

~7.5MB
~163K SLoC