Binance Square
CR Insights
11k 投稿

CR Insights

X•@expert25012 | Crypto trader & Web3 researcher | Crypto explorer sharing market insights, airdrops, ecosystem updates & opportunities
447 フォロー
13.3K+ フォロワー
9.8K+ いいね
投稿
PINNED
·
--
一部該当
翻訳参照
I was looking through GRVT's Python SDK when one line kept pulling me back: client_order_id = rand_uint32() + (1 << 63) It felt oddly specific. Most exchanges don't make you think about which half of a 64-bit ID space your orders belong to. Following that trail led back to the API docs. @grvt_io reserves the lower half for its own UI and expects external clients to live entirely in the upper half. The obvious alternative would be letting everyone generate IDs from the same space and resolving collisions later. That's when the design choice clicked. GRVT doesn't wait for conflicting order identities to be untangled after the fact. It prevents them from ever existing across independent trading systems. What looked like a random constant turned out to be one line of SDK code exposing a much bigger architectural decision. @grvt_io #grvt $EVAA $SXT $LAB
I was looking through GRVT's Python SDK when one line kept pulling me back:

client_order_id = rand_uint32() + (1 << 63)

It felt oddly specific. Most exchanges don't make you think about which half of a 64-bit ID space your orders belong to.

Following that trail led back to the API docs. @grvt_io reserves the lower half for its own UI and expects external clients to live entirely in the upper half. The obvious alternative would be letting everyone generate IDs from the same space and resolving collisions later.

That's when the design choice clicked. GRVT doesn't wait for conflicting order identities to be untangled after the fact. It prevents them from ever existing across independent trading systems.

What looked like a random constant turned out to be one line of SDK code exposing a much bigger architectural decision.

@grvt_io #grvt $EVAA $SXT $LAB
Shared ID space
Partitioned ID space
18 残り時間
PINNED
🔥 すべてのビットコインサイクルはデス・クロスで終わった…では、なぜ今回は違うと思うのか? ⚠️💀📉$BTC 📊 我々が見てきたすべての主要なBTCブルサイクル — 2013年、2017年、2021年 — は最終的に高い時間枠で伝説的なデス・クロスで終わりました。 🤯 しかし現在、ビットコインは2021年よりも早く極度の恐怖に突入しており、流動性は薄まり、ボラティリティは爆発しています。 🧩 歴史は、毎サイクルで同じ信号が返ってくることを教えてくれます… 問題は「いつ」なのかであって、「もし」ではありません。 ⚡ これを無視している人は夢を見ている — サイクルは変わらず、感情だけが変わります。 🚨 鋭くいよう。リスク管理をしっかりと。市場は希望を気にしません。
🔥 すべてのビットコインサイクルはデス・クロスで終わった…では、なぜ今回は違うと思うのか? ⚠️💀📉$BTC

📊 我々が見てきたすべての主要なBTCブルサイクル — 2013年、2017年、2021年 — は最終的に高い時間枠で伝説的なデス・クロスで終わりました。

🤯 しかし現在、ビットコインは2021年よりも早く極度の恐怖に突入しており、流動性は薄まり、ボラティリティは爆発しています。

🧩 歴史は、毎サイクルで同じ信号が返ってくることを教えてくれます… 問題は「いつ」なのかであって、「もし」ではありません。

⚡ これを無視している人は夢を見ている — サイクルは変わらず、感情だけが変わります。

🚨 鋭くいよう。リスク管理をしっかりと。市場は希望を気にしません。
翻訳参照
One thing about @NewtonProtocol appearing on BeInCrypto's Institutional 100 list didn't make sense to me at first. It wasn't listed alongside projects building the same product. It was grouped with infrastructure solving different parts of the transaction lifecycle. That made me ask what engineering decision justified that. Newton's Runtime Invariant Enforcement evaluates whether a transaction satisfies policy before execution instead of monitoring it after settlement. Once authorization moves into the execution path, compliance stops being something wrapped around the financial system. It becomes part of the infrastructure every transaction depends on. @NewtonProtocol #Newt $NEWT $BILL $TRIA
One thing about @NewtonProtocol appearing on BeInCrypto's Institutional 100 list didn't make sense to me at first.
It wasn't listed alongside projects building the same product. It was grouped with infrastructure solving different parts of the transaction lifecycle.

That made me ask what engineering decision justified that.

Newton's Runtime Invariant Enforcement evaluates whether a transaction satisfies policy before execution instead of monitoring it after settlement.

Once authorization moves into the execution path, compliance stops being something wrapped around the financial system. It becomes part of the infrastructure every transaction depends on.
@NewtonProtocol #Newt $NEWT $BILL $TRIA
Monitor transactions
Enforce transactions
13 残り時間
記事
翻訳参照
THE OPTIMIZATION I KEPT LOOKING FOR NEVER SHOWED UPmarket's been dead since like 6am, i ended up reading through newton's Streaming Consensus section instead and i swear i thought i was missing a page. unless ive completely misunderstood it. why is every operator doing the exact same work? i kept waiting for the optimisation. you know... operator A evaluates this request, operator B evaluates the next one, split the workload, get more throughput. it never came the docs just kept repeating the same thing in different places. inside Streaming Consensus every operator independently evaluates the policy before contributing its signature. my first reaction honestly wasn't "that's secure" it was "that sounds expensive" so i stopped reading the rest and went back because i assumed i'd skipped the paragraph where the work eventually gets distributed. couldn't find it that's when i realised i was carrying an assumption into the docs instead of reading what they were actually saying. i was treating policy evaluation like cloud computing. @NewtonProtocol seems to be treating it like independent verification those are completely different jobs. if operators split the work, nobody actually knows whether another operator reached the right answer. they only know another operator said they did. the only way an operator can honestly contribute a signature is if it actually evaluated the policy itself. which suddenly made all that duplicated work look different.i'd been calling it waste @NewtonProtocol seems to be calling it confidence im still not sure i'd noticed that distinction before. because most systems optimise by asking, "how do we stop repeating work?" streaming consensus almost feels like it's asking a different question entirely. "how much independent verification are we willing to give up before the signature stops proving what we think it proves?" and now im wondering whether i was ever looking at a distributed computing problem in the first place... or whether this whole thing was really an attestation problem that just happened to look like a performance problem. #Newt $NEWT $LAB

THE OPTIMIZATION I KEPT LOOKING FOR NEVER SHOWED UP

market's been dead since like 6am, i ended up reading through newton's Streaming Consensus section instead and i swear i thought i was missing a page.
unless ive completely misunderstood it. why is every operator doing the exact same work?
i kept waiting for the optimisation.
you know... operator A evaluates this request, operator B evaluates the next one, split the workload, get more throughput.
it never came the docs just kept repeating the same thing in different places. inside Streaming Consensus every operator independently evaluates the policy before contributing its signature.
my first reaction honestly wasn't "that's secure"
it was "that sounds expensive"
so i stopped reading the rest and went back because i assumed i'd skipped the paragraph where the work eventually gets distributed.
couldn't find it that's when i realised i was carrying an assumption into the docs instead of reading what they were actually saying.
i was treating policy evaluation like cloud computing.
@NewtonProtocol seems to be treating it like independent verification those are completely different jobs.
if operators split the work, nobody actually knows whether another operator reached the right answer. they only know another operator said they did.
the only way an operator can honestly contribute a signature is if it actually evaluated the policy itself.
which suddenly made all that duplicated work look different.i'd been calling it waste @NewtonProtocol seems to be calling it confidence im still not sure i'd noticed that distinction before.
because most systems optimise by asking, "how do we stop repeating work?"
streaming consensus almost feels like it's asking a different question entirely.
"how much independent verification are we willing to give up before the signature stops proving what we think it proves?"
and now im wondering whether i was ever looking at a distributed computing problem in the first place... or whether this whole thing was really an attestation problem that just happened to look like a performance problem.
#Newt $NEWT $LAB
翻訳参照
done
done
Sunshine 🔶
·
--
𝐃𝐚𝐲 𝟖 𝐂𝐡𝐚𝐥𝐥𝐞𝐧𝐠𝐞: 𝐌𝐚𝐤𝐞 𝐭𝐡𝐞 𝟗 𝐒𝐡𝐢𝐧𝐞! 🎨

9をアートにしよう。

𝐌𝐞𝐜𝐡𝐚𝐧𝐢𝐜𝐬:
1️⃣ 提供された写真をテンプレートとして使います。数字の9をあなた自身の創造的な記念日デザインに変え、Binanceへの特別メッセージも追加してください。

2️⃣ 完成したデザインをコメントで #ShineForBinance9 と一緒に共有し、私のチャレンジ投稿をRT/シェアしてください。

3️⃣ 全てのメカニクスに従い、応募を完了するためにフォームを記入してください。

Form link here

9を輝かせて、#Binance のスワッグを手に入れるチャンス!🎁
記事
翻訳参照
I DIDN'T EXPECT "MEDIAN" TO BE PART OF A CONSENSUS ALGORITHMI skipped over that word the first time. Not because it looked complicated. Because it looked ordinary. Then it showed up again and for some reason I couldn't stop thinking about it. Consensus, at least the way I'd always pictured it, wasn't supposed to have a middle ground. Twenty operators either agree on what they saw, or they don't. If they don't, something has gone wrong. That's almost the definition of why you have multiple operators in the first place. So why was Newton calculating a median before policy evaluation even begins? I genuinely thought I'd misunderstood the flow. I went back to the beginning and read it again. The operators don't start by sharing one answer. They fetch external data independently. Only after that does the protocol compare what everyone observed, reconcile small differences and decide whether those differences are still close enough to represent the same state of the world. That wasn't the model I walked in with. I had quietly assumed honest operators should observe identical reality. The documentation never promises that. Actually, once I stopped looking for it, I realised it couldn't. Price feeds don't update at exactly the same instant. API responses arrive over different network paths. External providers don't all refresh their data together. Two honest operators can disagree for perfectly ordinary reasons without either of them being wrong. That made me realise I'd been treating every disagreement as if it belonged in the same category. @NewtonProtocol doesn't. The protocol seems to separate ordinary disagreement from meaningful disagreement before it ever asks operators to evaluate policy. That distinction kept bothering me because somebody still has to decide where the line sits. Too strict, and normal differences in the outside world become failed transactions. Too loose, and genuinely different observations start getting treated as if they're the same. That's not really a cryptography problem. It's not even a consensus problem. It's an engineering judgement about how much imperfection a distributed system can tolerate before it stops trusting its own inputs. I opened that section expecting to learn how Newton gets operators to agree. Instead, I ended up questioning an assumption I'd never noticed I was carrying. Maybe consensus was never about making independent observers see exactly the same world. Maybe the harder problem is deciding when two slightly different views of the world are still describing the same reality. #Newt @NewtonProtocol $NEWT $LAB $DEXE

I DIDN'T EXPECT "MEDIAN" TO BE PART OF A CONSENSUS ALGORITHM

I skipped over that word the first time. Not because it looked complicated.
Because it looked ordinary. Then it showed up again and for some reason I couldn't stop thinking about it.
Consensus, at least the way I'd always pictured it, wasn't supposed to have a middle ground. Twenty operators either agree on what they saw, or they don't. If they don't, something has gone wrong. That's almost the definition of why you have multiple operators in the first place.
So why was Newton calculating a median before policy evaluation even begins?
I genuinely thought I'd misunderstood the flow. I went back to the beginning and read it again.
The operators don't start by sharing one answer. They fetch external data independently. Only after that does the protocol compare what everyone observed, reconcile small differences and decide whether those differences are still close enough to represent the same state of the world.
That wasn't the model I walked in with.
I had quietly assumed honest operators should observe identical reality. The documentation never promises that. Actually, once I stopped looking for it, I realised it couldn't.
Price feeds don't update at exactly the same instant. API responses arrive over different network paths. External providers don't all refresh their data together. Two honest operators can disagree for perfectly ordinary reasons without either of them being wrong.
That made me realise I'd been treating every disagreement as if it belonged in the same category.
@NewtonProtocol doesn't.
The protocol seems to separate ordinary disagreement from meaningful disagreement before it ever asks operators to evaluate policy.
That distinction kept bothering me because somebody still has to decide where the line sits.
Too strict, and normal differences in the outside world become failed transactions.
Too loose, and genuinely different observations start getting treated as if they're the same.
That's not really a cryptography problem.
It's not even a consensus problem.
It's an engineering judgement about how much imperfection a distributed system can tolerate before it stops trusting its own inputs.
I opened that section expecting to learn how Newton gets operators to agree.
Instead, I ended up questioning an assumption I'd never noticed I was carrying.
Maybe consensus was never about making independent observers see exactly the same world.
Maybe the harder problem is deciding when two slightly different views of the world are still describing the same reality.
#Newt @NewtonProtocol $NEWT $LAB $DEXE
💯💯
💯💯
sana Miraj 959899786
·
--
😇😇😇STAY BLESS😇😇😇
フォロー🫰
いいね👍🏻
シェア🫴
🦋🦋🦋私を支えてください 🦋🦋🦋🦋
$BTC
#BTC
確認済み
翻訳参照
I Spent the evening reading through @NewtonProtocol Mainnet Beta rollout instead of the SDK docs. One implementation detail explained the staged rollout better than any roadmap. Runtime Invariant Enforcement doesn't just observe transactions. It decides whether they're allowed to execute. That changes what a new VaultKit integration actually is.It isn't another application connected to the network. It's another execution environment where authorization becomes part of the transaction itself. That's why Mainnet Beta is still limited to curated VaultKit deployments while Newton talks about eventually reaching 50M wallets and 200k developers. Expanding the network no longer means adding more users. It means expanding the number of places trusted to enforce policy before execution. The rollout stopped looking like a growth problem. It started looking like an authorization problem. @NewtonProtocol #Newt $NEWT
I Spent the evening reading through @NewtonProtocol Mainnet Beta rollout instead of the SDK docs.

One implementation detail explained the staged rollout better than any roadmap.
Runtime Invariant Enforcement doesn't just observe transactions. It decides whether they're allowed to execute.

That changes what a new VaultKit integration actually is.It isn't another application connected to the network.
It's another execution environment where authorization becomes part of the transaction itself.

That's why Mainnet Beta is still limited to curated VaultKit deployments while Newton talks about eventually reaching 50M wallets and 200k developers.

Expanding the network no longer means adding more users. It means expanding the number of places trusted to enforce policy before execution.

The rollout stopped looking like a growth problem. It started looking like an authorization problem.
@NewtonProtocol #Newt $NEWT
翻訳参照
#BinancePickAndWin ⚽ Every match is another chance to win. Make your daily picks, complete simple tasks, and unlock Reward Boxes for a share of Binance's massive prize pool. Back your football knowledge and let every prediction count! 🏆💛
#BinancePickAndWin

⚽ Every match is another chance to win.

Make your daily picks, complete simple tasks, and unlock Reward Boxes for a share of Binance's massive prize pool. Back your football knowledge and let every prediction count! 🏆💛
翻訳参照
$LAB (1H) Bias: Bearish 📉 {future}(LABUSDT) $LAB Entry: Below 0.4100 SL: 0.4300 TP1: 0.4000 TP2: 0.3885 TP3: 0.3700 Analysis: Price remains in a strong downtrend with lower highs and lower lows. Bulls need to reclaim 0.4300 to weaken the bearish momentum. Until then, rallies can be treated as selling opportunities.
$LAB (1H) Bias: Bearish 📉
$LAB Entry: Below 0.4100
SL: 0.4300

TP1: 0.4000
TP2: 0.3885
TP3: 0.3700

Analysis: Price remains in a strong downtrend with lower highs and lower lows. Bulls need to reclaim 0.4300 to weaken the bearish momentum. Until then, rallies can be treated as selling opportunities.
翻訳参照
#BinancePickAndWin [join everyone never miss this](https://www.binance.com/activity/pick-and-win/2026-football-challenge?ref=CRJOIN6754) 🎁 Binance Rewards Hub keeps stacking the perks. Just checked my Rewards Hub and found: ✅ 99 USDT 0% Interest Voucher (already in effect) ✅ Two 5 USDC Spot Trading Fee Rebate Vouchers (50% rebate) Small rewards like these can help reduce trading costs or unlock extra flexibility when used at the right time. It's always worth checking your Rewards Hub because unclaimed vouchers can expire before you notice. Have you checked your Binance Rewards Hub recently? You might already have rewards waiting for you. 👀
#BinancePickAndWin
join everyone never miss this

🎁 Binance Rewards Hub keeps stacking the perks.

Just checked my Rewards Hub and found: ✅ 99 USDT 0% Interest Voucher (already in effect) ✅ Two 5 USDC Spot Trading Fee Rebate Vouchers (50% rebate)

Small rewards like these can help reduce trading costs or unlock extra flexibility when used at the right time. It's always worth checking your Rewards Hub because unclaimed vouchers can expire before you notice.

Have you checked your Binance Rewards Hub recently? You might already have rewards waiting for you. 👀
翻訳参照
$VELVET (1H) — Bias: Bullish (Pullback) {future}(VELVETUSDT) Entry: 0.495–0.505 Stop Loss: 0.482 Targets: TP1: 0.530 TP2: 0.565 TP3: 0.595 $VELVET Strong breakout followed by a healthy pullback. Holding above 0.48 keeps the bullish structure intact. A move above 0.53 could restart the uptrend toward the recent high. Risk: If price closes below 0.482, the bullish setup is invalidated and deeper downside becomes likely.
$VELVET (1H) — Bias: Bullish (Pullback)
Entry: 0.495–0.505
Stop Loss: 0.482

Targets:
TP1: 0.530
TP2: 0.565
TP3: 0.595

$VELVET Strong breakout followed by a healthy pullback. Holding above 0.48 keeps the bullish structure intact. A move above 0.53 could restart the uptrend toward the recent high.

Risk: If price closes below 0.482, the bullish setup is invalidated and deeper downside becomes likely.
翻訳参照
$AGLD (1H) Bias: Bullish 📈 {future}(AGLDUSDT) $AGLD Long Entry: Above 0.1850 or on a pullback to 0.1800–0.1820 SL: 0.1760 TP1: 0.1910 TP2: 0.1990 TP3: 0.2080 Analysis: Strong bullish momentum remains intact. Holding above 0.1800 favors another move higher, while a break below 0.1760 weakens the setup.
$AGLD (1H) Bias: Bullish 📈
$AGLD Long Entry: Above 0.1850 or on a pullback to 0.1800–0.1820

SL: 0.1760

TP1: 0.1910
TP2: 0.1990
TP3: 0.2080

Analysis: Strong bullish momentum remains intact. Holding above 0.1800 favors another move higher, while a break below 0.1760 weakens the setup.
翻訳参照
$DEXE (1H) Bias: Bullish 📈 {future}(DEXEUSDT) $DEXE Long Entry: Above 48.00 or on a pullback to 46.80–47.20 SL: 45.80 TP1: 49.90 TP2: 51.50 TP3: 53.50 Analysis: $DEXE is in a strong uptrend with higher highs and higher lows. Price is consolidating just below 50.00 after a sharp rally. Holding above 46.80 keeps the bullish structure intact, while a breakout above 50.00 could trigger the next leg higher.
$DEXE (1H) Bias: Bullish 📈
$DEXE Long Entry: Above 48.00 or on a pullback to 46.80–47.20

SL: 45.80

TP1: 49.90
TP2: 51.50
TP3: 53.50

Analysis: $DEXE is in a strong uptrend with higher highs and higher lows. Price is consolidating just below 50.00 after a sharp rally. Holding above 46.80 keeps the bullish structure intact, while a breakout above 50.00 could trigger the next leg higher.
確認済み
記事
翻訳参照
WHY IS NEWTON SPENDING YEARS CHASING SOMETHING IT CAN'T EVEN SHIP?I expected @NewtonProtocol privacy roadmap to be about replacing today's system. Instead, I found a research direction the documentation openly admits isn't ready for production. Threshold Fully Homomorphic Encryption. That immediately raised a question. @NewtonProtocol already evaluates policies privately using MPC and Trusted Execution Environments. Applications can already build on that. So why spend years designing around something that's still far too slow? The answer wasn't performance. It was compatibility. One sentence stood out to me. Newton says a future transition from MPC-based evaluation to FHE-based evaluation should be transparent to clients and policy authors. That sounds like a technical detail. I don't think it is. Cryptography doesn't evolve very often, but when it does, ecosystems usually pay the price. New infrastructure often means new integrations, new audits, new deployment work and, sometimes, entirely new application logic. Newton seems to be trying to separate those two problems. Improve the privacy engine underneath without forcing everything built above it to change as well. That changed how I looked at the roadmap. The research isn't simply asking whether encrypted computation can become practical. It's asking whether the protocol can adopt a completely different privacy model without turning that upgrade into an ecosystem-wide migration. Who benefits if that works? Not just @NewtonProtocol . Developers don't have to redesign applications because the cryptography changed. Institutions don't have to rebuild existing integrations to adopt stronger privacy guarantees. Users continue interacting with the same applications without needing to understand what changed underneath. That doesn't mean FHE is arriving soon. The documentation is unusually direct that production-grade Threshold FHE remains a multi-year research effort. The network already has a working privacy model today. Nothing depends on FHE becoming practical tomorrow. But I don't think that's the interesting part. The interesting part is what @NewtonProtocol is optimizing for years before the technology is ready. Most roadmaps ask, "How do we ship a better cryptographic system?" @NewtonProtocol seems to be asking a harder question: If better cryptography eventually arrives, can the ecosystem adopt it without asking everyone to start over? That's what changed how I evaluate this roadmap. I'm no longer watching it as a promise about $FHE $NEWT #Newt @NewtonProtocol #NewToken $DEXE {future}(FHEUSDT)

WHY IS NEWTON SPENDING YEARS CHASING SOMETHING IT CAN'T EVEN SHIP?

I expected @NewtonProtocol privacy roadmap to be about replacing today's system.
Instead, I found a research direction the documentation openly admits isn't ready for production.
Threshold Fully Homomorphic Encryption. That immediately raised a question.
@NewtonProtocol already evaluates policies privately using MPC and Trusted Execution Environments. Applications can already build on that.
So why spend years designing around something that's still far too slow?
The answer wasn't performance.
It was compatibility. One sentence stood out to me.
Newton says a future transition from MPC-based evaluation to FHE-based evaluation should be transparent to clients and policy authors.
That sounds like a technical detail. I don't think it is.
Cryptography doesn't evolve very often, but when it does, ecosystems usually pay the price. New infrastructure often means new integrations, new audits, new deployment work and, sometimes, entirely new application logic.
Newton seems to be trying to separate those two problems.
Improve the privacy engine underneath without forcing everything built above it to change as well.
That changed how I looked at the roadmap.
The research isn't simply asking whether encrypted computation can become practical.
It's asking whether the protocol can adopt a completely different privacy model without turning that upgrade into an ecosystem-wide migration.
Who benefits if that works?
Not just @NewtonProtocol . Developers don't have to redesign applications because the cryptography changed.
Institutions don't have to rebuild existing integrations to adopt stronger privacy guarantees.
Users continue interacting with the same applications without needing to understand what changed underneath.
That doesn't mean FHE is arriving soon.
The documentation is unusually direct that production-grade Threshold FHE remains a multi-year research effort.
The network already has a working privacy model today.
Nothing depends on FHE becoming practical tomorrow.
But I don't think that's the interesting part.
The interesting part is what @NewtonProtocol is optimizing for years before the technology is ready.
Most roadmaps ask, "How do we ship a better cryptographic system?"
@NewtonProtocol seems to be asking a harder question:
If better cryptography eventually arrives, can the ecosystem adopt it without asking everyone to start over?
That's what changed how I evaluate this roadmap.
I'm no longer watching it as a promise about $FHE
$NEWT #Newt @NewtonProtocol #NewToken $DEXE
翻訳参照
I used to think the hardest part of automation was making better decisions. The more I looked at @NewtonProtocol , the less convinced I became. Most automated systems don't fail because the decision was wrong. They fail because yesterday's permission quietly remains valid after today's conditions have changed. Newton's authorization policies are evaluated before execution, so an agent doesn't keep acting just because it was trusted once. It keeps acting only while the policy still says it should. That's a different way of thinking about automation. The difficult problem isn't teaching agents when to act. It's teaching permissions when to expire. If that becomes the default, will future autonomous systems compete on intelligence—or on how precisely they know when to stop? @NewtonProtocol #Newt $NEWT $T $SXT
I used to think the hardest part of automation was making better decisions.
The more I looked at @NewtonProtocol , the less convinced I became.

Most automated systems don't fail because the decision was wrong. They fail because yesterday's permission quietly remains valid after today's conditions have changed.

Newton's authorization policies are evaluated before execution, so an agent doesn't keep acting just because it was trusted once. It keeps acting only while the policy still says it should.

That's a different way of thinking about automation. The difficult problem isn't teaching agents when to act. It's teaching permissions when to expire.

If that becomes the default, will future autonomous systems compete on intelligence—or on how precisely they know when to stop?

@NewtonProtocol #Newt $NEWT

$T $SXT
一部該当
翻訳参照
I expected every order to be treated the same once it reached the exchange. Then I noticed something that didn't fit. GRVT's matching engine executes in under 2 ms, yet some taker orders are deliberately delayed by 25 ms while post-only orders aren't. That immediately raised a question: why build a matching engine for speed, then deliberately slow certain orders? The delay stopped looking like latency. It started looking like a rule about what different orders are expected to contribute before matching even begins. Some orders consume liquidity. Others are expected to create it first. @grvt_io #grvt $LAB $T $SXT
I expected every order to be treated the same once it reached the exchange. Then I noticed something that didn't fit. GRVT's matching engine executes in under 2 ms, yet some taker orders are deliberately delayed by 25 ms while post-only orders aren't.

That immediately raised a question: why build a matching engine for speed, then deliberately slow certain orders?
The delay stopped looking like latency. It started looking like a rule about what different orders are expected to contribute before matching even begins. Some orders consume liquidity. Others are expected to create it first.
@grvt_io
#grvt $LAB $T $SXT
fairness
50%
speed
50%
6 投票 • 投票は終了しました
ログインして、さらにコンテンツを読む
厳選トピックで世界の暗号資産トレーダーの仲間入り
⚡️ 暗号資産に関する最新かつ有益な情報が見つかります。
💬 世界最大の暗号資産取引所から信頼されています。
👍 認証を受けたクリエイターから、有益なインサイトを得られます。
メール / 電話番号
サイトマップ
Cookieの設定
プラットフォーム利用規約