ARC-42: Update the Total ASTRO Emissions Per Block and the Allocation Points on Terra 2

It’s good that it’s been more than a week because otherwise we wouldn’t have iterated through the proposals allocation point changes.

I think next week should be a good target to submit this on-chain

1 Like

For the laymen ser, please explain what you are planning to submit on-chain.

Thank you.

The amended version of the proposals first mentioned in this comment:

I updated the initial text of the proposal to reflect the newly proposed emissions and allocation points:

Thank you, is there some source regarding this?

I started creating a dashboard on Flipside, but got rugged and lost my query. Getting all the trading info is also not as easy due to so many possible entrypoints for swaps and the flipside indexing not being ideal.

This is the LP single sided entry volume in LUNA (already halved, as only half is swapped)

I wouldnt say it is insignificant, as some days it peaks over 50k LUNA deposited (volume 25k LUNA) ~ 50k USD.

Can you share your flipside query?

Used this query:

WITH
  single_sided AS (
    SELECT
      *
    FROM
      terra.core.fact_lp_actions
    WHERE
      amount = 0
  )

SELECT
  DATE_TRUNC('month', fla.block_timestamp) AS month,
  fla.currency,
  SUM(fla.amount) / 1e6 AS amount_single_sided
FROM
  terra.core.fact_lp_actions fla
  JOIN single_sided ss ON ss.tx_id = fla.tx_id
WHERE
  fla.action = 'provide_liquidity'
  AND fla.amount > 0
GROUP by
  month,
  fla.currency
ORDER BY
  month,
  fla.currency;