📜 [專欄新文章] 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.
👏 歡迎轉載分享鼓掌
同時也有9部Youtube影片,追蹤數超過4萬的網紅Battle Field Ver1,也在其Youtube影片中提到,チャンネル登録お願いします。 → http://u0u1.net/QWo0 ★Twitter MotorSports Battlefield ver1 (MBFv1) @BattlefieldVer1 ★ニコニコ動画 https://www.nicovideo.jp/my/top ...
「this t is not a function」的推薦目錄:
- 關於this t is not a function 在 Taipei Ethereum Meetup Facebook 的最讚貼文
- 關於this t is not a function 在 Elaine73 Facebook 的最佳貼文
- 關於this t is not a function 在 高盟傑直播平台 Facebook 的最佳貼文
- 關於this t is not a function 在 Battle Field Ver1 Youtube 的最佳解答
- 關於this t is not a function 在 Battle Field Ver1 Youtube 的最佳貼文
- 關於this t is not a function 在 Spice N' Pans Youtube 的最讚貼文
- 關於this t is not a function 在 this.$t is not a function in a class component #1767 - GitHub 的評價
- 關於this t is not a function 在 'Uncaught TypeError: t is not a function' - Stack Overflow 的評價
- 關於this t is not a function 在 Uncaught TypeError | Is Not A Function | Solution - YouTube 的評價
- 關於this t is not a function 在 Uncaught TypeError: t.getLayerStatesArray is not a function 的評價
- 關於this t is not a function 在 TypeScript Style Guide - Google · GitHub 的評價
this t is not a function 在 Elaine73 Facebook 的最佳貼文
[GIVEAWAY✨] Collect beautiful moments ✨ Even though it’s 🌤hot, I’m sticky, the kids are sweaty 💦but it was an AWESOME day out acting like tourists in our own country! ✌🏻✌🏻#swipe 🏎🏎🏎🏎🏝✨
.
I must have a thousand photos from our family outing last weekend and it’s all so precious with it being the kids’ first time out on a luge ride🏎! Heck, ITS MY FIRST too! 😂
.
Not sure about you, but I’m running out of space everywhere keeping photos, but I discovered @yahoosg’s 📩Yahoo Mail Forever Memories - with its 1TB free storage that makes it incredibly easy to organize and store childhood memories 👍🏻
.
Every Yahoo Mail email account comes with 1TB of free storage which can hold approximately 250,000 hi-resolution photos, 500 hours of HD video or 6.5 million document pages in the form of Word or PDF files – ample space to store every single memory, big or small, for a lifetime!
.
With @yahoosg’s VIEW function, photographs are easily sorted into Photos and Documents with a single click 💻✨
.
So set up a Yahoo account now (I did it for my kids!) and start saving photos, and memories 💌 #linkinbio
.
GIVEAWAYYY! ✨Sign up for your @yahoosg email and stand to win a $50 @grab_sg voucher! All you have to do is to make sure you have a Yahoo account, like this photo, comment below and tag a friend to share the love! ❤️ One tag & comment counts as an entry, I’ll pick a winner at random so good luck! 🍀
.
Giveaway ends 20th Dec 2359 hours.
.
Wearing @toddleythoughts x @gongchasgofficial Bubble Tea T-shirts (Use ELRIC10 for 10% off!) @pazzionofficial flats 💋
.
#1TB
#YahooMail
#YahooMail1TB
#ForeverMemories @ Sentosa Island, Singapore
this t is not a function 在 高盟傑直播平台 Facebook 的最佳貼文
#女人聖品
#男人補品
#吳宗憲不敢亂介紹
#健康價780元留言加一
JACKY WU 紅藜雙胜肽蛋白飲(50ml,8瓶/盒)
品名:JACKY WU 紅藜雙胜肽蛋白飲
Product Name:Red quinoa fish peptide lactoferrin drink
成分內容物:水、紅藜萃取液(紅藜萃取物、檸檬酸)、赤藻糖醇、牛乳清蛋白、鱸魚萃取粉、乳酸、L-抗壞血酸(維生素C)、水蜜桃香料、牛磺酸、魚膠原蛋白、酵母抽出物[酵母、酵母培養基(菸鹼酸、本多酸鈣、維生素B6、維生素B2、維生素B1、葉酸、生物素)]、蘋果香料、蔗糖素(甜味劑)、乳鐵蛋白、果寡糖、甜菊醣苷(甜味劑)、西印度櫻桃萃取粉(西印度櫻桃萃取物、麥芽糊精)
Ingredients:Water、Djulis liquid extract(Djulis extract、Citric acid)、Erythritol、Whey protein、Sea Bass extract powder、Lactic acid、Ascorbic acid(Vitamin C)、Peach Flavour、Taurine、Marine collagen、B-Complex vitamins[Inactive yeast、Nicotinic acid、Calcium pantothenate、Pyridoxine hydrochloride(Vitamin B6)、Riboflavin(Vitamin B2)、Thiamine Hydrochloride(Vitamin B1)、Folic acid、D-Biotin]、Apple Flavour、Sucralose、Lactoferrin、Fructooligosaccharides、Steviol glycoside、Acerola berry extract powder(Acerola berry extract、Maltodextrin)
內容物:50毫升(mL),8瓶/盒
Net Weight / Package:50mL/Bottle,8Bottles/Box
食用方法:每日1瓶為限。建議早餐後1瓶或運動後1瓶。開封後請盡速飲用。
Directions:Please don’t drink more than 1 bottle per day. 1 bottle after breakfast or 1 bottle after exercise is recommended. Drink as soon as possible after opening.
保存期限:18個月
Shelf Life:18 months
有效日期:請見包裝上標示(西元年/月/日)
Expiration Date:As shown on the package(Year/Month/Day)
原產地:台灣
Country of Origin:Taiwan
產險信息:本產品已投保產物產品責任選2000萬元,投保金額不等同於理賠金額。
Product Liability Insurance:This product has 20 million NT dollars of product liability insurance. The insured amount is not equal to the claim amount.
本產品製造工廠符合GHP、NSF、GMP、HACCP、ISO22000、ISO9001等認證
注意事項:
(1)保存條件:請置於陰涼乾燥處,避免陽光直射,並放置於兒童不易取得處。
(2)請依照食用方法食用,多食無益。
(3)孕婦及授乳中婦女、服藥或身體不適者,請先洽詢專業醫師意見。
(4)食用後如有不適感或過敏,請停止食用。
(5)本品補充多種人體所需營養素,可調節生理機能。
Cautions:
(1)Storage conditions:Please store in a cool and dry place, avoid direct sunlight, and keep it out of reach of children.
(2)Please follow the daily recommended amount, overeating doesn’ t help.
(3) Pregnant woman and women who are breastfeeding, or people who are taking medicine or are unwell, please consult a professional physician first.
(4)If you have any discomfort or allergies after eating, please stop eating.
(5)This product supplements a variety of nutrients needed by the human body, which can regulate physiological function.
過敏原:本產品含魚類、牛奶及其製品等過敏原。乳清蛋白製程已去除大部分乳糖。
Allergy Advice:This product contains allergens such as fish, milk and its products. Most of lactose is removed in the production process of whey protein.
this t is not a function 在 Battle Field Ver1 Youtube 的最佳解答
チャンネル登録お願いします。
→ http://u0u1.net/QWo0
★Twitter
MotorSports Battlefield ver1 (MBFv1)
@BattlefieldVer1
★ニコニコ動画
https://www.nicovideo.jp/my/top
過去にアップロードした動画を順次公開しております。
自主削除した動画が順次投稿されています。
こちらのフォローも宜しくお願いします。
※この動画はクリエイティブコモンズとして下記のチャンネルより再利用が許可されています。
Channel Copyright
★SOL - Supercars of London
●LEWIS HAMILTON: F1 CAR vs YAMAHA R1M SUPERBIKE!!
●https://www.youtube.com/watch?v=T7Jr0u4xxM0&t=361s
【最強AMG F1】 V8メルセデスAMG F1 対 SBK YAMAHA R1M 【過去動画です。】
#2020年F1新たな偉業達成に向けて #メルセデスAMGペトロナス始動 #REDBULL優勝おめでとうございます。
★チャンネルに使用されている画像及び動画について。
動画クレジットを明記致します。ご自身の作品が動画内に含まれていて問題がある場合は下記メールアドレスまでご連絡ください。削除いたします。
良く検証して下さい。他の動画作成者が編集した動画をこちらが使用した場合は、こちらも原画がわかりません。
★削除要請がある場合、コメント欄に入力されても英語以外は翻訳機能がやくに立ちません。日本語又は英語にて連絡お願いします。(標準的な文でお知らせください。くそ汚い言葉を使う英語圏の人間がいますが、使用した場合は迷わず通報します。)
★画像による著作権侵害ですが、今の時代、画像に著作権者を明記するのは困難です。確実な出展が明記できません。
運営に対して著作権侵害は極力しないでください。初めは警告してください。こちらも画像使用に関しては調べるのは困難です。(だれが所有者かわかりません。)様々な個人及び企業で加工され使用されている画像もありますの。
★About images and videos used in the channel. I will specify the video credit. If your work is included in the video and there is a problem, please contact us at the email address below. I will delete it. Please verify well. If you use a video edited by another video creator, we don't know the original. ★If there is a request for deletion, even if it is entered in the comment field, the translation function will not work easily in languages other than English. Please contact us in Japanese or English. (Please let us know in a standard sentence. There are English-speaking people who use dirty words, but if you use it, I will report without hesitation.) ★It is copyright infringement by images, but in the current era, copyright is on images It is difficult to specify the person. I cannot specify the exact exhibition. Please do not infringe copyright to the operation as much as possible. Please warn me at the beginning. Again, it's difficult to find out about image usage. (I don't know who owns it.) There are also images that have been processed and used by various individuals and companies.
チャンネル概要及びコンセプト。
MotorSports Battle Field Ver1 、(MBFv1)このチャンネルでは主にMotoGP、
F1等様々な動画を編集してアップロードしています。
動画の基本コンセプトは音楽とレースシーンの融合です。出来るだけカッコよく皆さんに感動してもらえる様な動画を作成していきたいと思います。
最近ではナレーションを入れての動画作成にも力を入れています。是非チャンネル登録お願いします。
★先日、動画を55本程度ブロックされました。中にはサムネだけで判断された不当ブロックもあります。いい加減で不当ブロックが数本ありました。
これからは極力画像と音楽、ナレーション入りでの編集となります。引き続きご視聴及びチャンネル登録お願い致します。
Channel overview and concept.
MotorSports Battle Field Ver1, (MBFv1) This channel is mainly MotoGP,
I am editing and uploading various videos such as F1.
The basic concept of the video is the fusion of music and race scenes. I would like to create a video that is as cool as possible and will impress everyone.
Recently, I've been focusing on creating videos with narration. Please subscribe to the channel.
★ The other day, about 55 videos were blocked. There are also illegal blocks that are judged only by thumbnails. There were several illegal blocks that I couldn't manage.
From now on, it will be edited with images, music and narration as much as possible. Please continue to view and subscribe.

this t is not a function 在 Battle Field Ver1 Youtube 的最佳貼文
チャンネル登録お願いします。
→ http://u0u1.net/QWo0
タイトル
●マジかぁMotoPG2020 R2スペインGPマーベリックビニャーレスが最後尾から鬼走りで全車ぶっちぎって優勝です。 GAME PLAY
動画クレジット
●MotoGP 20 | Maverick Vinales (Spain) | MotoGP | Jerez | Tv Race Replay(クリエィティブコモンズとして再利用しています。)
https://www.youtube.com/watch?v=lSoWj4fRE0g&t=287s
●サムネイル画像使用
https://young-machine.com/
新しいミシュランタイヤでMotoGPの勢力図が変わる?!
#MotoGP2020 #MotoGPR2 #スペインGPサーキットデヘレス (2020)
★Twitter
MotorSports Battlefield ver1 (MBFv1)
@BattlefieldVer1
★ニコニコ動画
https://www.nicovideo.jp/my/top
過去にアップロードした動画を順次公開しております。
自主削除した動画が順次投稿されています。
こちらのフォローも宜しくお願いします。
★チャンネルに使用されている画像及び動画について。
動画クレジットを明記致します。ご自身の作品が動画内に含まれていて問題がある場合は下記メールアドレスまでご連絡ください。削除いたします。
良く検証して下さい。他の動画作成者が編集した動画をこちらが使用した場合は、こちらも原画がわかりません。
★削除要請がある場合、コメント欄に入力されても英語以外は翻訳機能がやくに立ちません。日本語又は英語にて連絡お願いします。(標準的な文でお知らせください。くそ汚い言葉を使う英語圏の人間がいますが、使用した場合は迷わず通報します。)
★画像による著作権侵害ですが、今の時代、画像に著作権者を明記するのは困難です。確実な出展が明記できません。
運営に対して著作権侵害は極力しないでください。初めは警告してください。こちらも画像使用に関しては調べるのは困難です。(だれが所有者かわかりません。)様々な個人及び企業で加工され使用されている画像もありますの。
★About images and videos used in the channel. I will specify the video credit. If your work is included in the video and there is a problem, please contact us at the email address below. I will delete it. Please verify well. If you use a video edited by another video creator, we don't know the original. ★If there is a request for deletion, even if it is entered in the comment field, the translation function will not work easily in languages other than English. Please contact us in Japanese or English. (Please let us know in a standard sentence. There are English-speaking people who use dirty words, but if you use it, I will report without hesitation.) ★It is copyright infringement by images, but in the current era, copyright is on images It is difficult to specify the person. I cannot specify the exact exhibition. Please do not infringe copyright to the operation as much as possible. Please warn me at the beginning. Again, it's difficult to find out about image usage. (I don't know who owns it.) There are also images that have been processed and used by various individuals and companies.
チャンネル概要及びコンセプト。
MotorSports Battle Field Ver1 、(MBFv1)このチャンネルでは主にMotoGP、
F1等様々な動画を編集してアップロードしています。
動画の基本コンセプトは音楽とレースシーンの融合です。出来るだけカッコよく皆さんに感動してもらえる様な動画を作成していきたいと思います。
最近ではナレーションを入れての動画作成にも力を入れています。是非チャンネル登録お願いします。
★先日、動画を55本程度ブロックされました。中にはサムネだけで判断された不当ブロックもあります。いい加減で不当ブロックが数本ありました。
これからは極力画像と音楽、ナレーション入りでの編集となります。引き続きご視聴及びチャンネル登録お願い致します。
Channel overview and concept.
MotorSports Battle Field Ver1, (MBFv1) This channel is mainly MotoGP,
I am editing and uploading various videos such as F1.
The basic concept of the video is the fusion of music and race scenes. I would like to create a video that is as cool as possible and will impress everyone.
Recently, I've been focusing on creating videos with narration. Please subscribe to the channel.
★ The other day, about 55 videos were blocked. There are also illegal blocks that are judged only by thumbnails. There were several illegal blocks that I couldn't manage.
From now on, it will be edited with images, music and narration as much as possible. Please continue to view and subscribe.

this t is not a function 在 Spice N' Pans Youtube 的最讚貼文
If you have only been using your rice cooker to make plain white rice, you have not used it to its fullest potential. In fact, you can make a variety of simple one dish meals with it and some rice cookers even can let you bake cakes in them. If you're still using a normal old school rice cooker with only one function i.e. cook rice function, it's time to switch it out for something slightly more advanced or perhaps you can even consider switching to a multi-cooker that comes with pressure cooking function. Don't go just because you still own an old-school rice cooker. The good news is even though we have used a multi-cooker for this Glutinous Rice with Chicken recipe, you can also use your normal rice cooker to prepare this dish too. FYI Glutinous Rice with Chicken is also known as Lor Mai Gai or 糯米鸡 in Chinese. This is a super easy and delicious Chinese recipe. Happy cooking!
See the ingredient list below for your easy reference.
Hope you can recreate this yummy dish in the comfort of your home. Thanks for dropping by our channel.
Please subscribe to stay tuned to our home cooking videos.
Follow us on:
Youtube: www.youtube.com/spicenpans
Facebook www.facebook.com/spicenpans/
Instagram www.instagram/spicenpans
Blog: www.spicenpans.com
Chat with us! info@spicenpans.com
Thanks for watching! See you soon.
xoxo
Jamie
on behalf of Spice N’ Pans
Ingredients:
Serves 3 - 4 pax
Marinated chicken & mushrooms
--------------
255g of skinless chicken thigh meat - cut into bite sizes
6 pieces of Chinese dried mushrooms - rehydrated & cut into halves
1/2 tablespoon of fresh ginger juice
2 tablespoons of light soy sauce
1 tablespoon of oyster sauce
1 tablespoon of Chinese cooking wine (Shaoxing Huatiao wine)
1 teaspoon of cornflour
1 teaspoon of sesame oil
A few dashes of white pepper
Other ingredients
--------
308g of glutinous rice (soak for at least 4 hours)
356ml of water
1 teaspoon of salt
A few dashes of white pepper
55g of Chinese sausage (remove casing)
===
If you like this recipe, you might like these too:
Restaurant style Chinese Spinach Tofu w/ Mushrooms 菠菜豆腐
https://www.youtube.com/watch?v=M1yQ8-w2Hs8&t=55s
Chinese Steamed Chicken & Mushrooms in Oyster Sauce
https://www.youtube.com/watch?v=m19AjHN8b1A&t=76s
Braised Pig’s Stomach w/ Mushrooms & Sea Cucumber
https://www.youtube.com/watch?v=zj_JkAx7n7A&t=23s
Disclaimer:
Spice N' Pans is not related to these products and cannot guarantee the quality of the products in the links provided. Links are provided here for your convenience. We can only stand by the brands of the products we used in the video and we highly recommend you to buy them. Even then, preference can be subjective. Please buy at your own risk. Some of the links provided here may be affiliated. These links are important as they help to fund this channel so that we can continue to give you more recipes. Cheers!

this t is not a function 在 'Uncaught TypeError: t is not a function' - Stack Overflow 的推薦與評價
... <看更多>
this t is not a function 在 Uncaught TypeError | Is Not A Function | Solution - YouTube 的推薦與評價

... is not a function jQuery is not a functionowlCarousel is not a functionslickSlider is not ... ... Your browser can ... ... <看更多>
this t is not a function 在 this.$t is not a function in a class component #1767 - GitHub 的推薦與評價
t is not a function 8 | @Component 9 | export default class App extends Vue { > 10 | private someData = this.$t("message"); | ^ 11 | } 12 ... ... <看更多>