You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The community pool currently swaps assets to the default denom (USDC) that we may want to maintain in the community pool but may not want to have as quote assets.
By separating these two lists we are able to both restrict Quote assets to a lower set as well as collect a more diverse range of blue chip tokens to the community pool.
Problem Definition
Osmosis collects a wide range of taker fees, which are then swapped for a default asset, currently USDC, if they are not on a whitelist. This whitelist currently includes the Quote assets for supercharged pools.
We deliberately keep the list of Quote assets small to minimize routing calculations, but this restricts the taker fees that the community pool can accumulate. These should not be linked.
By separating these, we can acquire such assets as:
LSTs such as stATOM, wstETH, stTIA, and milkTIA that the native denom is currently approved
Other top-ranked tokens, such as SOL, AVAX, ARB, etc., can then be used to increase trading liquidity in these key markets.
Summary
The community pool currently swaps assets to the default denom (USDC) that we may want to maintain in the community pool but may not want to have as quote assets.
By separating these two lists we are able to both restrict Quote assets to a lower set as well as collect a more diverse range of blue chip tokens to the community pool.
Problem Definition
Osmosis collects a wide range of taker fees, which are then swapped for a default asset, currently USDC, if they are not on a whitelist. This whitelist currently includes the Quote assets for supercharged pools.
We deliberately keep the list of Quote assets small to minimize routing calculations, but this restricts the taker fees that the community pool can accumulate. These should not be linked.
By separating these, we can acquire such assets as:
Proposed Feature
Currently, there is a check that a denom is in the whitelist here:
https://github.com/osmosis-labs/osmosis/blob/main/x/txfees/keeper/hooks.go#L144
This uses the
authorizedQuoteDenoms
store, which was fine for launch, but should be maintained as a separate list as these are two different samples.The text was updated successfully, but these errors were encountered: