📜 [專欄新文章] Uniswap v3 Features Explained in Depth
✍️ 田少谷 Shao
📥 歡迎投稿: https://medium.com/taipei-ethereum-meetup #徵技術分享文 #使用心得 #教學文 #medium
Once again the game-changing DEX 🦄 👑
Image source: https://uniswap.org/blog/uniswap-v3/
Outline
0. Intro1. Uniswap & AMM recap2. Ticks 3. Concentrated liquidity4. Range orders: reversible limit orders5. Impacts of v36. Conclusion
0. Intro
The announcement of Uniswap v3 is no doubt one of the most exciting news in the DeFi place recently 🔥🔥🔥
While most have talked about the impact v3 can potentially bring on the market, seldom explain the delicate implementation techniques to realize all those amazing features, such as concentrated liquidity, limit-order-like range orders, etc.
Since I’ve covered Uniswap v1 & v2 (if you happen to know Mandarin, here are v1 & v2), there’s no reason for me to not cover v3 as well ✅
Thus, this article aims to guide readers through Uniswap v3, based on their official whitepaper and examples made on the announcement page. However, one needs not to be an engineer, as not many codes are involved, nor a math major, as the math involved is definitely taught in your high school, to fully understand the following content 😊😊😊
If you really make it through but still don’t get shxt, feedbacks are welcomed! 🙏
There should be another article focusing on the codebase, so stay tuned and let’s get started with some background noise!
1. Uniswap & AMM recap
Before diving in, we have to first recap the uniqueness of Uniswap and compare it to traditional order book exchanges.
Uniswap v1 & v2 are a kind of AMMs (automated market marker) that follow the constant product equation x * y = k, with x & y stand for the amount of two tokens X and Y in a pool and k as a constant.
Comparing to order book exchanges, AMMs, such as the previous versions of Uniswap, offer quite a distinct user experience:
AMMs have pricing functions that offer the price for the two tokens, which make their users always price takers, while users of order book exchanges can be both makers or takers.
Uniswap as well as most AMMs have infinite liquidity¹, while order book exchanges don’t. The liquidity of Uniswap v1 & v2 is provided throughout the price range [0,∞]².
Uniswap as well as most AMMs have price slippage³ and it’s due to the pricing function, while there isn’t always price slippage on order book exchanges as long as an order is fulfilled within one tick.
In an order book, each price (whether in green or red) is a tick. Image source: https://ftx.com/trade/BTC-PERP
¹ though the price gets worse over time; AMM of constant sum such as mStable does not have infinite liquidity
² the range is in fact [-∞,∞], while a price in most cases won’t be negative
³ AMM of constant sum does not have price slippage
2. Tick
The whole innovation of Uniswap v3 starts from ticks.
For those unfamiliar with what is a tick:
Source: https://www.investopedia.com/terms/t/tick.asp
By slicing the price range [0,∞] into numerous granular ticks, trading on v3 is highly similar to trading on order book exchanges, with only three differences:
The price range of each tick is predefined by the system instead of being proposed by users.
Trades that happen within a tick still follows the pricing function of the AMM, while the equation has to be updated once the price crosses the tick.
Orders can be executed with any price within the price range, instead of being fulfilled at the same one price on order book exchanges.
With the tick design, Uniswap v3 possesses most of the merits of both AMM and an order book exchange! 💯💯💯
So, how is the price range of a tick decided?
This question is actually somewhat related to the tick explanation above: the minimum tick size for stocks trading above 1$ is one cent.
The underlying meaning of a tick size traditionally being one cent is that one cent (1% of 1$) is the basis point of price changes between ticks, ex: 1.02 — 1.01 = 0.1.
Uniswap v3 employs a similar idea: compared to the previous/next price, the price change should always be 0.01% = 1 basis point.
However, notice the difference is that in the traditional basis point, the price change is defined with subtraction, while here in Uniswap it’s division.
This is how price ranges of ticks are decided⁴:
Image source: https://uniswap.org/whitepaper-v3.pdf
With the above equation, the tick/price range can be recorded in the index form [i, i+1], instead of some crazy numbers such as 1.0001¹⁰⁰ = 1.0100496621.
As each price is the multiplication of 1.0001 of the previous price, the price change is always 1.0001 — 1 = 0.0001 = 0.01%.
For example, when i=1, p(1) = 1.0001; when i=2, p(2) = 1.00020001.
p(2) / p(1) = 1.00020001 / 1.0001 = 1.0001
See the connection between the traditional basis point 1 cent (=1% of 1$) and Uniswap v3’s basis point 0.01%?
Image source: https://tenor.com/view/coin-master-cool-gif-19748052
But sir, are prices really granular enough? There are many shitcoins with prices less than 0.000001$. Will such prices be covered as well?
Price range: max & min
To know if an extremely small price is covered or not, we have to figure out the max & min price range of v3 by looking into the spec: there is a int24 tick state variable in UniswapV3Pool.sol.
Image source: https://uniswap.org/whitepaper-v3.pdf
The reason for a signed integer int instead of an uint is that negative power represents prices less than 1 but greater than 0.
24 bits can cover the range between 1.0001 ^ (2²³ — 1) and 1.0001 ^ -(2)²³. Even Google cannot calculate such numbers, so allow me to offer smaller values to have a rough idea of the whole price range:
1.0001 ^ (2¹⁸) = 242,214,459,604.341
1.0001 ^ -(2¹⁷) = 0.000002031888943
I think it’s safe to say that with a int24 the range can cover > 99.99% of the prices of all assets in the universe 👌
⁴ For implementation concern, however, a square root is added to both sides of the equation.
How about finding out which tick does a price belong to?
Tick index from price
The answer to this question is rather easy, as we know that p(i) = 1.0001^i, simply takes a log with base 1.0001 on both sides of the equation⁴:
Image source: https://www.codecogs.com/latex/eqneditor.php
Let’s try this out, say we wanna find out the tick index of 1000000.
Image source: https://ncalculators.com/number-conversion/log-logarithm-calculator.htm
Now, 1.0001¹³⁸¹⁶² = 999,998.678087146. Voila!
⁵ This formula is also slightly modified to fit the real implementation usage.
3. Concentrated liquidity
Now that we know how ticks and price ranges are decided, let’s talk about how orders are executed in a tick, what is concentrated liquidity and how it enables v3 to compete with stablecoin-specialized DEXs (decentralized exchange), such as Curve, by improving the capital efficiency.
Concentrated liquidity means LPs (liquidity providers) can provide liquidity to any price range/tick at their wish, which causes the liquidity to be imbalanced in ticks.
As each tick has a different liquidity depth, the corresponding pricing function x * y = k also won’t be the same!
Each tick has its own liquidity depth. Image source: https://uniswap.org/blog/uniswap-v3/
Mmm… examples are always helpful for abstract descriptions 😂
Say the original pricing function is 100(x) * 1000(y) = 100000(k), with the price of X token 1000 / 100 = 10 and we’re now in the price range [9.08, 11.08].
If the liquidity of the price range [11.08, 13.08] is the same as [9.08, 11.08], we don’t have to modify the pricing function if the price goes from 10 to 11.08, which is the boundary between two ticks.
The price of X is 1052.63 / 95 = 11.08 when the equation is 1052.63 * 95 = 100000.
However, if the liquidity of the price range [11.08, 13.08] is two times that of the current range [9.08, 11.08], balances of x and y should be doubled, which makes the equation become 2105.26 * 220 = 400000, which is (1052.63 * 2) * (110 * 2) = (100000 * 2 * 2).
We can observe the following two points from the above example:
Trades always follow the pricing function x * y = k, while once the price crosses the current price range/tick, the liquidity/equation has to be updated.
√(x * y) = √k = L is how we represent the liquidity, as I say the liquidity of x * y = 400000 is two times the liquidity of x * y = 100000, as √(400000 / 100000) = 2.
What’s more, compared to liquidity on v1 & v2 is always spread across [0,∞], liquidity on v3 can be concentrated within certain price ranges and thus results in higher capital efficiency from traders’ swapping fees!
Let’s say if I provide liquidity in the range [1200, 2800], the capital efficiency will then be 4.24x higher than v2 with the range [0,∞] 😮😮😮 There’s a capital efficiency comparison calculator, make sure to try it out!
Image source: https://uniswap.org/blog/uniswap-v3/
It’s worth noticing that the concept of concentrated liquidity was proposed and already implemented by Kyper, prior to Uniswap, which is called Automated Price Reserve in their case.⁵
⁶ Thanks to Yenwen Feng for the information.
4. Range orders: reversible limit orders
As explained in the above section, LPs of v3 can provide liquidity to any price range/tick at their wish. Depending on the current price and the targeted price range, there are three scenarios:
current price < the targeted price range
current price > the targeted price range
current price belongs to the targeted price range
The first two scenarios are called range orders. They have unique characteristics and are essentially fee-earning reversible limit orders, which will be explained later.
The last case is the exact same liquidity providing mechanism as the previous versions: LPs provide liquidity in both tokens of the same value (= amount * price).
There’s also an identical product to the case: grid trading, a very powerful investment tool for a time of consolidation. Dunno what’s grid trading? Check out Binance’s explanation on this, as this topic won’t be covered!
In fact, LPs of Uniswap v1 & v2 are grid trading with a range of [0,∞] and the entry price as the baseline.
Range orders
To understand range orders, we’d have to first revisit how price is discovered on Uniswap with the equation x * y = k, for x & y stand for the amount of two tokens X and Y and k as a constant.
The price of X compared to Y is y / x, which means how many Y one can get for 1 unit of X, and vice versa the price of Y compared to X is x / y.
For the price of X to go up, y has to increase and x decrease.
With this pricing mechanism in mind, it’s example time!
Say an LP plans to place liquidity in the price range [15.625, 17.313], higher than the current price of X 10, when 100(x) * 1000(y) = 100000(k).
The price of X is 1250 / 80 = 15.625 when the equation is 80 * 1250 = 100000.
The price of X is 1315.789 / 76 = 17.313 when the equation is 76 * 1315.789 = 100000.
If now the price of X reaches 15.625, the only way for the price of X to go even higher is to further increase y and decrease x, which means exchanging a certain amount of X for Y.
Thus, to provide liquidity in the range [15.625, 17.313], an LP needs only to prepare 80 — 76 = 4 of X. If the price exceeds 17.313, all 4 X of the LP is swapped into 1315.789 — 1250 = 65.798 Y, and then the LP has nothing more to do with the pool, as his/her liquidity is drained.
What if the price stays in the range? It’s exactly what LPs would love to see, as they can earn swapping fees for all transactions in the range! Also, the balance of X will swing between [76, 80] and the balance of Y between [1250, 1315.789].
This might not be obvious, but the example above shows an interesting insight: if the liquidity of one token is provided, only when the token becomes more valuable will it be exchanged for the less valuable one.
…wut? 🤔
Remember that if 4 X is provided within [15.625, 17.313], only when the price of X goes up from 15.625 to 17.313 is 4 X gradually swapped into Y, the less valuable one!
What if the price of X drops back immediately after reaching 17.313? As X becomes less valuable, others are going to exchange Y for X.
The below image illustrates the scenario of DAI/USDC pair with a price range of [1.001, 1.002] well: the pool is always composed entirely of one token on both sides of the tick, while in the middle 1.001499⁶ is of both tokens.
Image source: https://uniswap.org/blog/uniswap-v3/
Similarly, to provide liquidity in a price range < current price, an LP has to prepare a certain amount of Y for others to exchange Y for X within the range.
To wrap up such an interesting feature, we know that:
Only one token is required for range orders.
Only when the current price is within the range of the range order can LP earn trading fees. This is the main reason why most people believe LPs of v3 have to monitor the price more actively to maximize their income, which also means that LPs of v3 have become arbitrageurs 🤯
I will be discussing more the impacts of v3 in 5. Impacts of v3.
⁷ 1.001499988 = √(1.0001 * 1.0002) is the geometric mean of 1.0001 and 1.0002. The implication is that the geometric mean of two prices is the average execution price within the range of the two prices.
Reversible limit orders
As the example in the last section demonstrates, if there is 4 X in range [15.625, 17.313], the 4 X will be completely converted into 65.798 Y when the price goes over 17.313.
We all know that a price can stay in a wide range such as [10, 11] for quite some time, while it’s unlikely so in a narrow range such as [15.625, 15.626].
Thus, if an LP provides liquidity in [15.625, 15.626], we can expect that once the price of X goes over 15.625 and immediately also 15.626, and does not drop back, all X are then forever converted into Y.
The concept of having a targeted price and the order will be executed after the price is crossed is exactly the concept of limit orders! The only difference is that if the range of a range order is not narrow enough, it’s highly possible that the conversion of tokens will be reverted once the price falls back to the range.
As price ranges follow the equation p(i) = 1.0001 ^ i, the range can be quite narrow and a range order can thus effectively serve as a limit order:
When i = 27490, 1.0001²⁷⁴⁹⁰ = 15.6248.⁸
When i = 27491, 1.0001²⁷⁴⁹¹ = 15.6264.⁸
A range of 0.0016 is not THAT narrow but can certainly satisfy most limit order use cases!
⁸ As mentioned previously in note #4, there is a square root in the equation of the price and index, thus the numbers here are for explantion only.
5. Impacts of v3
Higher capital efficiency, LPs become arbitrageurs… as v3 has made tons of radical changes, I’d like to summarize my personal takes of the impacts of v3:
Higher capital efficiency makes one of the most frequently considered indices in DeFi: TVL, total value locked, becomes less meaningful, as 1$ on Uniswap v3 might have the same effect as 100$ or even 2000$ on v2.
The ease of spot exchanging between spot exchanges used to be a huge advantage of spot markets over derivative markets. As LPs will take up the role of arbitrageurs and arbitraging is more likely to happen on v3 itself other than between DEXs, this gap is narrowed … to what extent? No idea though.
LP strategies and the aggregation of NFT of Uniswap v3 liquidity token are becoming the blue ocean for new DeFi startups: see Visor and Lixir. In fact, this might be the turning point for both DeFi and NFT: the two main reasons of blockchain going mainstream now come to the alignment of interest: solving the $$ problem 😏😏😏
In the right venue, which means a place where transaction fees are low enough, such as Optimism, we might see Algo trading firms coming in to share the market of designing LP strategies on Uniswap v3, as I believe Algo trading is way stronger than on-chain strategies or DAO voting to add liquidity that sort of thing.
After reading this article by Parsec.finance: The Dex to Rule Them All, I cannot help but wonder: maybe there is going to be centralized crypto exchanges adopting v3’s approach. The reason is that since orders of LPs in the same tick are executed pro-rata, the endless front-running speeding-competition issue in the Algo trading world, to some degree, is… solved? 🤔
Anyway, personal opinions can be biased and seriously wrong 🙈 I’m merely throwing out a sprat to catch a whale. Having a different voice? Leave your comment down below!
6. Conclusion
That was kinda tough, isn’t it? Glad you make it through here 🥂🥂🥂
There are actually many more details and also a huge section of Oracle yet to be covered. However, since this article is more about features and targeting normal DeFi users, I’ll leave those to the next one; hope there is one 😅
If you have any doubt or find any mistake, please feel free to reach out to me and I’d try to reply AFAP!
Stay tuned and in the meantime let’s wait and see how Uniswap v3 is again pioneering the innovation of DeFi 🌟
Uniswap v3 Features Explained in Depth was originally published in Taipei Ethereum Meetup on Medium, where people are continuing the conversation by highlighting and responding to this story.
👏 歡迎轉載分享鼓掌
同時也有7部Youtube影片,追蹤數超過1萬的網紅CryptoK,也在其Youtube影片中提到,#bunnyswap #pancakeswap #binance Binance Smart Chain đang dẫn đầu xu hướng farming 2021 do lợi thế phí giao dịch rẻ. Nền tảng BSC20 của CZ đã chiếm đ...
「dao token」的推薦目錄:
- 關於dao token 在 Taipei Ethereum Meetup Facebook 的最讚貼文
- 關於dao token 在 Taipei Ethereum Meetup Facebook 的最佳貼文
- 關於dao token 在 動區動趨 BlockTempo - 由社群而生的區塊鏈媒體 - Media for Blockchain Facebook 的最讚貼文
- 關於dao token 在 CryptoK Youtube 的最佳貼文
- 關於dao token 在 CryptoK Youtube 的精選貼文
- 關於dao token 在 Rosie Nguyen Dao Youtube 的最讚貼文
- 關於dao token 在 How are DAO Treasuries and Tokens managed? - YouTube 的評價
dao token 在 Taipei Ethereum Meetup Facebook 的最佳貼文
📜 [專欄新文章] Aragon Fundraising:下一代的去中心化募資平台
✍️ Juin Chiu
📥 歡迎投稿: https://medium.com/taipei-ethereum-meetup #徵技術分享文 #使用心得 #教學文 #medium
Aragon Fundraising 將如何改變去中心化募資的型態?
前言
本文是 Crosslink Taiwan 2019 的其中一個議程:Using DAOs to fundraise for your project 的速記,Aragon 的共同創辦人 Luis Cuende 在這個20分鐘的專題演講中介紹了在去中心化金融(DeFi) 興起的時代要如何打造更好的去中心化募資平台。
點擊這裡可以觀看完整內容,以下正文開始。
DeFi 的興起
區塊鏈不僅帶給我們密碼貨幣,也帶來了智能合約與其所能建構的全新治理模式。Luis 首先給了聽眾一個清楚的 DeFi 生態系全貌:
市場(The Market):每一個代幣的持有者
銀行帳戶(Bank Accounts):Argent/InstaDapp
金融應用(Financial Applications):Uniswap/Augur
借貸(Lending and Borrowing):Compound/Kyber
主要資本市場(Primary Capital Markets):ICOs
存款準備(Reserve Banking):Maker
價值儲存(SoV):Ether
有些讀者可能對上述出現的應用都不陌生。其中,Aragon 想改進的就是代表主要資本市場的 ICO。ICO 於 2017 年的興盛與衰退也直接導致了區塊鏈資本市場的泡沫化。那麼 ICO 它究竟是具有什麼缺點?
究竟是革命還是騙局?ICO 的興起與失敗
首次代幣發行(Initial Coin Offering, ICO)是區塊鏈的第一個殺手級應用(Killer App),也代表代幣資本市場的崛起。它標誌了人類史上第一次得以用極低門檻進行全球性的點對點募資,同時大幅減少了傳統募資中所需對政府與銀行的大量繁冗程序。
然而,Luis 緊接著便點出 ICO 募資模式的缺陷,包括:
一次性支付(Lump-sum payouts)
難以取回資金(Difficult to recover funds)
猖獗的詐欺(Rampant fruad)
交易所上架費(Exchange listing fees)
低流動性(Low liquidity issues)
ETH波動率曝露(ETH volatility exposure)
吸引短期投機者(Attracts short-term speculators)
儘管 ICO 滋生了許多騙局,但它代表的代幣經濟革命已然發生。
如何像 ICO 一樣募資同時維持究責性(Accountability)?
ICO 仍然代表著去中心化世界的理想,那麼該怎麼做才能讓它變得更好?Aragon 對這個問題的答案是:要讓募資的過程變得可究責(Accotable),也就是必須要尋求對募資團隊更好的治理方法。而這可以使用去中心化化自治組織來實現。去中心化化自治組織(Decentralized Autonomous Organization, DAO)是載明於智能合約的一套可程式化的(Programmable)規則,讓一切公開透明,所有的決策皆可透過鏈上投票完成。
Aragon 的對策:Aragon Fundraising
Aragon Fundraising (以下簡稱 AF)將會為每個募資的專案建立一個 DAO,並交由代幣該專案持有者共同治理,並著重於對專案團隊的長期資助。
準備資金(Reserve)與授權資金(Discretionary)
AF 的資金分為兩種:準備資金(Reserve)與授權資金(Discretionary)。準備資金由 DAO 治理,授權資金交由募資者管理。固定額度的資金將按週期由準備資金撥至授權資金中,有別於 ICO 中的一次性支付,且 DAO 有權力可以發起投票以停止資助。
使用抵押曲線(Bonding Curve)保證流動性
另一個 ICO 的詬病是:專案團隊募得的資本與其代幣價格脫鉤,這也嚴重引響投資者代幣的流動性。理論上,準備資金應該要與資本市場(例如代幣價格)有所連結。因此在 DAO 模型中,一切依照抵押曲線(Bonding Curve)來設定供給與需求。買入代幣相當於把資本投注於準備資金中;賣出代幣相當把資本從準備資金中取出,代幣流動性獲得保證。
如何支持專案?
Luis 近一步興奮的指出,有了 AF,如果你想募資,你不再需要一堆法律文件與文書作業;如果你想投資,你可以透過投票決定項目的去留,而且你可以隨時將你的代幣賣回給專案團隊。
Aragon Fundraising vs ICO
最後,AF 與 ICO 相比有哪些好處呢?Luis 也一項一項詳細列出:
資金支付進度(Fund Disbursement Schedule):AF 是基於里程碑的(Milestone-based);而 ICO 是一次性的(Lump sum)。
資金取回(Token Holder Fund Recovery):AF 是容易的;ICO 是困難的。
透明性(Transparency):AF 的所有條款與財務狀況都是公開的;ICO 則由專案團隊決定。
究責性(Accountability):AF 的代幣持有者投票以支付下一週期的資金;ICO 則無法約束。
流動性(Liquidity):AF 由抵押曲線保證流通性;ICO 需依交易所而定。
庫存資產(Treasury Asset):AF 使用 DAI 穩定幣;ICO 使用 ETH。
激勵陣線(Incentive Alignment):AF 吸引長期持有者;ICO 吸引短期投機者。
結語
AF 是使用 DAO 來治理專案募資的全新構想,另外還有如 Gitcoin 等專注於資助開發者的平台。很樂見鏈上治理與代幣經濟的日益茁壯。
References
Aragon fundraising
Aragon fundraising github
DAICO
Aragon Fundraising:下一代的去中心化募資平台 was originally published in Taipei Ethereum Meetup on Medium, where people are continuing the conversation by highlighting and responding to this story.
👏 歡迎轉載分享鼓掌
dao token 在 動區動趨 BlockTempo - 由社群而生的區塊鏈媒體 - Media for Blockchain Facebook 的最讚貼文
【持有特定 Token,才能加入的聊天室?】
這可不只是什麼XX項目的官方電報群那麼簡單;
在區塊鏈原生社交應用「Ciao DAO」裡,代幣是你的身分標誌,是人與人之間的情感連結......
#區塊鏈社交 #代幣經濟
-
🙋♀️加入社群和我們一起討論學習區塊鏈:https://www.facebook.com/groups/BlockTempo/
✅訂閱動區LINE即時新聞:https://line.me/R/ti/p/%40kgx9780p
dao token 在 CryptoK Youtube 的最佳貼文
#bunnyswap #pancakeswap #binance
Binance Smart Chain đang dẫn đầu xu hướng farming 2021 do lợi thế phí giao dịch rẻ.
Nền tảng BSC20 của CZ đã chiếm được vị trí TVL của Uniswap và cuộc đấu hứa hẹn còn nhiều hấp dẫn.
Trong video này, mình chia sẻ với mọi người về bunnyswap, sử dụng nền tảng BSC20 giúp chúng ta có được token Bunny.
Good luck!
Link vô nhóm FB: https://www.facebook.com/groups/1924045037762477/permalink/1924080781092236/
Website của Bunny: https://pancakebunny.finance/farm
Kênh này của mình tạo nên với mục đích chia sẻ những thông tin về đầu tư, làm giàu, đặc biệt là về đầu tư tiền điện tử.
* ĐĂNG KÍ SÀN BINANCE NHẬN 10% GIẢM PHÍ GIAO DỊCH BẰNG LINK CỦA KÊNH CRYPTOK:
https://bit.ly/346iAir
► Website: khiemnguyen.info
►Facebook: https://www.facebook.com/KhiemNguyen111
►Instagram:
►Email: [email protected]
dao token 在 CryptoK Youtube 的精選貼文
#binance #pancakeswap #bsc
Trong video này mình chia sẻ 1 dự án của người Việt dựa trên nền tảng Binance Smart Chain Bep20 với token UBU.
Mọi người ủng hộ mình nhé:
Link đăng kí UBU:
https://ubu.finance/?ref=0xc424FE2F32371aeCbE1e43D01a8f297C55b7767E
=========
* Thiết lập tài khoản Metamask:
Network name: Binance Smart Chain Mainnet
New RPL URL: https://bsc-dataseed.binance.org/
Chain ID: 56
=========
Kênh này của mình tạo nên với mục đích chia sẻ những thông tin về đầu tư, làm giàu, đặc biệt là về đầu tư tiền điện tử.
* ĐĂNG KÍ SÀN BINANCE NHẬN 10% GIẢM PHÍ GIAO DỊCH BẰNG LINK CỦA KÊNH CRYPTOK:
https://bit.ly/346iAir
► Website: khiemnguyen.info
►Facebook: https://www.facebook.com/KhiemNguyen111
►Instagram:
►Email: [email protected]
dao token 在 Rosie Nguyen Dao Youtube 的最讚貼文
VLOG #32: EAT CLEAN VỚI BẮP: Giảm Cân Bằng Bắp & Công Thức Bắp Nướng Mỡ Hành Healthy | Roses Fitness 2020
Video hôm nay sẽ về chủ đề bắp ngô nha các bạn ơi. Chắc hẳn có nhiều bạn khi giảm cân giảm mỡ đã ăn bắp như một thực phẩm trong chế độ ăn của mình rồi. Rosie sẽ bàn về tác dụng của bắp, ăn thế nào cho đúng cũng như làm thế nào chế biến món bắp/ngô nướng mỡ hành healthy, salad ngô tại nhà theo style Eat Clean lành mạnh nha.
Đừng quên nhấn Like và Subscribe, Share về trang cá nhân của các bạn nếu thích Video này để ủng hộ Rosie nhé.
➥ Tương tác với mình qua các trang mạng xã hội nha / Follow me on social media:
» Instagram:
- https://www.instagram.com/_rosesfitness_/?hl=en
» Facebook:
- https://www.facebook.com/rosesfitness94
Music:
Song: Ikson - Don't Worry Music promoted by Vlog No Copyright Music. Video Link: https://youtu.be/jIl6i59-Wfc
Thumbnail: https://pngtree.com/element/down?id=NTA0NTkxOA==&type=1&time=1591974283&token=MWIxNTRiOGExZWU4Mjk3NWVmZTkwMjZmNTQ5OWY1OGU=
dao token 在 How are DAO Treasuries and Tokens managed? - YouTube 的推薦與評價
Learn about crypto investing: https://www.interaxisacademy.com/ ***DAOs are quite complicated. They issue tokens, managed by treasuries, ... ... <看更多>