Difference between revisions of "Uniswap"

From DefiLlama
Jump to navigation Jump to search
Line 12: Line 12:
== Slippage ==
== Slippage ==
When transactions are submitted to Ethereum, their order of execution is established by the amount of "gas" offered as a fee for executing each transaction. The higher the fee offered, the faster the transaction is executed. The transactions with a lower gas fee will remain pending for an indeterminate amount of time. During this time, the price environment in which the transaction will eventually be executed will change, as other swaps will be taking place. <ref>https://docs.uniswap.org/protocol/concepts/V3-overview/swaps#slippage</ref>
When transactions are submitted to Ethereum, their order of execution is established by the amount of "gas" offered as a fee for executing each transaction. The higher the fee offered, the faster the transaction is executed. The transactions with a lower gas fee will remain pending for an indeterminate amount of time. During this time, the price environment in which the transaction will eventually be executed will change, as other swaps will be taking place. <ref>https://docs.uniswap.org/protocol/concepts/V3-overview/swaps#slippage</ref>
== Governance ==
Uniswaps organizational norms, code and future updates are determined by voting on proposals
To start voting in Uniswap Governance users will need:
* [https://uniswap.org/blog/uni UNI Tokens]
* ETH for transaction costs
* A browser with Metamask installed
The governance process begins in the Governance Forum, where you can find proposals under consideration, gather information about community sentiment, and engage with the community. <ref>https://docs.uniswap.org/protocol/concepts/governance/guide-to-voting</ref>


== Sources ==
== Sources ==

Revision as of 18:16, 19 April 2022

The Uniswap protocol is a Permissionless peer-to-peer system designed for exchanging cryptocurrencies (ERC-20 Tokens)

AMM

Uniswap uses an Automated Market Maker(AMM) model. An AMM replaces the buy and sell orders in an order book market with a liquidity pool of two assets, both valued relative to each other. As one asset is traded for the other, the relative price of the two assets shifts, and a new market rate(price) for both is determined [1]

Liquidity Provider

A liquidity provider is someone who deposits ERC20 tokens into a given liquidity pool. Liquidity providers take on price risk and are compensated with trading fees. [2]

Swaps

Swaps are the most common way of interacting with the Uniswap protocol. For end-users, swapping is straightforward: a user selects an ERC-20 token that they own and a token they would like to trade it for. Executing a swap sells the currently owned tokens for the proportional amount of the tokens desired, minus the swap fee, which is awarded to liquidity providers [3]

Slippage

When transactions are submitted to Ethereum, their order of execution is established by the amount of "gas" offered as a fee for executing each transaction. The higher the fee offered, the faster the transaction is executed. The transactions with a lower gas fee will remain pending for an indeterminate amount of time. During this time, the price environment in which the transaction will eventually be executed will change, as other swaps will be taking place. [4]

Sources