Binance Square
Mir Zad Bibi
10k Публикации

Mir Zad Bibi

Square Verified+
Crypto Enthusiast | Spot Trader | Web3 Content Creator | | Bold Thinker |X:Mir61215972712|
Открытая сделка
Трейдер с регулярными сделками
1.6 г
1.0K+ подписок(и/а)
36.0K+ подписчиков(а)
26.5K+ понравилось
Посты
Портфель
PINNED
·
--
Частичная правда
Статья
When Rego Learns to Read InkFamily runs a small trading business, and the account needs any two of three signatures for anything above a certain amount, my father and two uncles are the authorized signatories. Bank cashier once held up a payment for a whole afternoon because one uncle's signature had drifted slightly from the specimen card on file, wanted it re-verified before releasing the funds. Two completely different checks happening there, does the ink actually match this person, and separately, is this person even on the approved list. I assumed Newton's policy engine only handled the second part, the rules about who's allowed to sign, and left the actual signature matching to some separate cryptographic layer sitting outside Rego entirely, same split as my bank. That's not how section seven describes it. Newton extends standard OPA Rego with its own newton dot crypto namespace, kept cleanly separate so regular Rego tooling still works, but inside that namespace a policy can recover an actual signer straight from a raw signature. The multisig example makes this concrete, a policy requiring two of three approvals calls ecdsa recover signer on each submitted signature, pulls out the real Ethereum address behind it, checks that address against the authorized signer list, and only allows the transaction once two genuine matches are counted. One file doing what my bank splits across a cashier's eye and a separate signatory lookup. The delegation chain example is where it actually got interesting for me. Alice delegates signing authority to Bob, Bob signs the actual transaction intent. The policy recovers two different signers in one pass, who signed the intent itself, and separately who issued the delegation document. It checks the delegator is an authorized principal, checks the delegation actually names Bob as the delegate and not someone else, and checks it hasn't expired. That's basically a power of attorney check done in code, verifying the agent's real signature and separately verifying the document granting them authority hasn't lapsed, in one evaluation instead of two separate desks. What sold me on this being more than a whiteboard example is that Rego stays a pure functional language even with these additions, same inputs and same policy always produce the same result, which is exactly what let Newton's zero knowledge layer make any of this provable later without touching the policy logic itself. What I haven't worked out is how signatory changes actually happen in practice. The authorized signer list lives in external policy data, not hardcoded into the Rego file itself, based on how the examples reference it. That would suggest swapping a signatory, my uncle stepping back and a cousin taking over, say, might just be a data update rather than republishing the whole policy under a new IPFS hash. The paper doesn't spell out that operational detail directly, so I'm inferring it rather than quoting it. The real test for $NEWT isn't whether the multisig and delegation examples read cleanly on paper, it's whether swapping out a real signatory stays that lightweight once actual businesses are running policies day to day. Anyone dealt with updating authorized signatories on a joint or business account? Curious how much paperwork it actually took on your end. @NewtonProtocol #Newt $NEWT $LAB $VANRY

When Rego Learns to Read Ink

Family runs a small trading business, and the account needs any two of three signatures for anything above a certain amount, my father and two uncles are the authorized signatories. Bank cashier once held up a payment for a whole afternoon because one uncle's signature had drifted slightly from the specimen card on file, wanted it re-verified before releasing the funds. Two completely different checks happening there, does the ink actually match this person, and separately, is this person even on the approved list.
I assumed Newton's policy engine only handled the second part, the rules about who's allowed to sign, and left the actual signature matching to some separate cryptographic layer sitting outside Rego entirely, same split as my bank.
That's not how section seven describes it.
Newton extends standard OPA Rego with its own newton dot crypto namespace, kept cleanly separate so regular Rego tooling still works, but inside that namespace a policy can recover an actual signer straight from a raw signature. The multisig example makes this concrete, a policy requiring two of three approvals calls ecdsa recover signer on each submitted signature, pulls out the real Ethereum address behind it, checks that address against the authorized signer list, and only allows the transaction once two genuine matches are counted. One file doing what my bank splits across a cashier's eye and a separate signatory lookup.
The delegation chain example is where it actually got interesting for me. Alice delegates signing authority to Bob, Bob signs the actual transaction intent. The policy recovers two different signers in one pass, who signed the intent itself, and separately who issued the delegation document. It checks the delegator is an authorized principal, checks the delegation actually names Bob as the delegate and not someone else, and checks it hasn't expired. That's basically a power of attorney check done in code, verifying the agent's real signature and separately verifying the document granting them authority hasn't lapsed, in one evaluation instead of two separate desks.
What sold me on this being more than a whiteboard example is that Rego stays a pure functional language even with these additions, same inputs and same policy always produce the same result, which is exactly what let Newton's zero knowledge layer make any of this provable later without touching the policy logic itself.
What I haven't worked out is how signatory changes actually happen in practice. The authorized signer list lives in external policy data, not hardcoded into the Rego file itself, based on how the examples reference it. That would suggest swapping a signatory, my uncle stepping back and a cousin taking over, say, might just be a data update rather than republishing the whole policy under a new IPFS hash. The paper doesn't spell out that operational detail directly, so I'm inferring it rather than quoting it.
The real test for $NEWT isn't whether the multisig and delegation examples read cleanly on paper, it's whether swapping out a real signatory stays that lightweight once actual businesses are running policies day to day.
Anyone dealt with updating authorized signatories on a joint or business account? Curious how much paperwork it actually took on your end.
@NewtonProtocol #Newt $NEWT
$LAB $VANRY
PINNED
Проверено
Helped my uncle get a small business loan from the bank last month. Needed three guarantors, three separate signatures on three separate pages. I figured the bank would call each guarantor after, confirm they actually signed, that's usually how it goes. Instead the loan officer only needed one thing, the notary's stamp confirming all three signed together that same day. One stamp covered three names, nobody got a follow-up call. I assumed BLS aggregation in Newton was basically that, a fancier word for operators voting faster. That's not actually what it's compressing. Every operator in the quorum independently signs the same consensus digest with its own BLS private key, real individual signatures, not one operator signing for everyone. The Aggregator collects those signatures, verifies each one, checks the stake-weighted quorum is met, and only then produces one aggregate signature. Here's the part that got me, the aggregate stays a fixed, compact size whether five operators signed or fifty. A smart contract checking it on-chain verifies that one signature, not fifty stacked up, which is what keeps gas costs from spiraling as the operator set grows. What I can't tell from the paper is the aggregation step itself, combining signatures obviously takes computation on the Aggregator's side, and nothing says how that scales once the signing operator set gets genuinely large. The real test for NEWT isn't the final proof staying small, it's whether aggregating hundreds of signatures stays just as fast once the network's operator count actually grows that large. Anyone dealt with a guarantor or witness signature setup where one final stamp covered everyone instead of separate follow-ups? @NewtonProtocol #Newt $NEWT $VELVET $LAB
Helped my uncle get a small business loan from the bank last month. Needed three guarantors, three separate signatures on three separate pages. I figured the bank would call each guarantor after, confirm they actually signed, that's usually how it goes. Instead the loan officer only needed one thing, the notary's stamp confirming all three signed together that same day. One stamp covered three names, nobody got a follow-up call.

I assumed BLS aggregation in Newton was basically that, a fancier word for operators voting faster.

That's not actually what it's compressing.

Every operator in the quorum independently signs the same consensus digest with its own BLS private key, real individual signatures, not one operator signing for everyone. The Aggregator collects those signatures, verifies each one, checks the stake-weighted quorum is met, and only then produces one aggregate signature. Here's the part that got me, the aggregate stays a fixed, compact size whether five operators signed or fifty. A smart contract checking it on-chain verifies that one signature, not fifty stacked up, which is what keeps gas costs from spiraling as the operator set grows.

What I can't tell from the paper is the aggregation step itself, combining signatures obviously takes computation on the Aggregator's side, and nothing says how that scales once the signing operator set gets genuinely large.

The real test for NEWT isn't the final proof staying small, it's whether aggregating hundreds of signatures stays just as fast once the network's operator count actually grows that large.

Anyone dealt with a guarantor or witness signature setup where one final stamp covered everyone instead of separate follow-ups?
@NewtonProtocol #Newt $NEWT $VELVET
$LAB
Проверено
Статья
Three Promises, Three TimelinesBuilding a small house on family land outside the city for the last year and a half. Ground floor's done, we're actually living in it. Second floor has the columns up and the steel showing, contractor keeps saying give it one more season. Then there's the rooftop solar setup that comes up at every family dinner, something everyone wants, nobody's paid a rupee toward yet, no date attached, just "later, once things settle." Three completely different stages of the same house, and everyone in the family already knows which is which. Nobody's confused into thinking the solar panels are already up there. I went into Newton's privacy section expecting the whitepaper to talk about "privacy" the same flat way most projects do, like it's one single thing that's either there or not. Section six actually splits itself into stages the same way my house did, and reading it that way is what made it click. Layer one is the ground floor, actually lived in right now. Every sensitive input, identity data, financial records, gets encrypted client side using HPKE, the same RFC 9180 standard, X25519 for the key exchange, ChaCha20-Poly1305 doing the actual encryption. Clients just call one contract to get the system's combined public key, no coordination needed on their end. During evaluation, operators pull together enough threshold shares to reconstruct the plaintext, run the policy against it, then sign. Reconstruct is the word that matters here, operators genuinely do see the data for that window, dual signatures from both user and app are required just to get that far. Nothing hidden about that limitation, it's stated plainly. Layer two is the columns and steel, visibly underway. This is MPC, operators computing jointly over secret-shared data without any single one of them ever reconstructing the plaintext at all. What convinced me this isn't just a nice diagram is a cited benchmark, honest-majority three-party MPC hitting over a billion gates per second in LAN conditions, which is actually fast enough for policy evaluation at the latency Newton needs. Same operators who sign BLS attestations today become the compute parties here, same EigenLayer stake backing it. Structurally ready, not fully deployed. Layer three is the rooftop solar, the one that comes up at dinner with no date attached. Fully homomorphic evaluation, computing directly over encrypted data with no decryption at any stage, tracing back to Gentry's 2009 bootstrapping proof. The paper's own number stopped me, FHE currently runs somewhere between a thousand and a million times slower than plaintext computation depending on the circuit. Called a multi-year research effort in the paper's own words, not a roadmap item with a quarter attached. What actually impressed me is the paper says a future FHE swap would be transparent to clients, same encrypted inputs, same Rego policies, same BLS-attested outputs, only what happens on the operator's side would change underneath. Whether that holds up when it's actually attempted years from now isn't something anyone can promise today. What's missing for me is any real timeline on layer two specifically. "Active development" could mean two quarters or two years, and the difference actually matters if you're deciding how much to trust the privacy story right now versus later. The real test for $NEWT isn't whether three tiers sound honest on paper, it's whether layer two actually ships on a timeline someone's willing to commit to, instead of sitting in "active development" the way my solar panels sit in "once things settle." Anyone else got a phased project at home where stage two's been "almost there" for way longer than promised? @NewtonProtocol #Newt $NEWT $HMSTR $LAB

Three Promises, Three Timelines

Building a small house on family land outside the city for the last year and a half. Ground floor's done, we're actually living in it. Second floor has the columns up and the steel showing, contractor keeps saying give it one more season. Then there's the rooftop solar setup that comes up at every family dinner, something everyone wants, nobody's paid a rupee toward yet, no date attached, just "later, once things settle."
Three completely different stages of the same house, and everyone in the family already knows which is which. Nobody's confused into thinking the solar panels are already up there.
I went into Newton's privacy section expecting the whitepaper to talk about "privacy" the same flat way most projects do, like it's one single thing that's either there or not. Section six actually splits itself into stages the same way my house did, and reading it that way is what made it click.
Layer one is the ground floor, actually lived in right now. Every sensitive input, identity data, financial records, gets encrypted client side using HPKE, the same RFC 9180 standard, X25519 for the key exchange, ChaCha20-Poly1305 doing the actual encryption. Clients just call one contract to get the system's combined public key, no coordination needed on their end. During evaluation, operators pull together enough threshold shares to reconstruct the plaintext, run the policy against it, then sign. Reconstruct is the word that matters here, operators genuinely do see the data for that window, dual signatures from both user and app are required just to get that far. Nothing hidden about that limitation, it's stated plainly.
Layer two is the columns and steel, visibly underway. This is MPC, operators computing jointly over secret-shared data without any single one of them ever reconstructing the plaintext at all. What convinced me this isn't just a nice diagram is a cited benchmark, honest-majority three-party MPC hitting over a billion gates per second in LAN conditions, which is actually fast enough for policy evaluation at the latency Newton needs. Same operators who sign BLS attestations today become the compute parties here, same EigenLayer stake backing it. Structurally ready, not fully deployed.
Layer three is the rooftop solar, the one that comes up at dinner with no date attached. Fully homomorphic evaluation, computing directly over encrypted data with no decryption at any stage, tracing back to Gentry's 2009 bootstrapping proof. The paper's own number stopped me, FHE currently runs somewhere between a thousand and a million times slower than plaintext computation depending on the circuit. Called a multi-year research effort in the paper's own words, not a roadmap item with a quarter attached.
What actually impressed me is the paper says a future FHE swap would be transparent to clients, same encrypted inputs, same Rego policies, same BLS-attested outputs, only what happens on the operator's side would change underneath. Whether that holds up when it's actually attempted years from now isn't something anyone can promise today.
What's missing for me is any real timeline on layer two specifically. "Active development" could mean two quarters or two years, and the difference actually matters if you're deciding how much to trust the privacy story right now versus later.
The real test for $NEWT isn't whether three tiers sound honest on paper, it's whether layer two actually ships on a timeline someone's willing to commit to, instead of sitting in "active development" the way my solar panels sit in "once things settle."
Anyone else got a phased project at home where stage two's been "almost there" for way longer than promised?
@NewtonProtocol #Newt $NEWT
$HMSTR $LAB
Частичная правда
Статья
Nobody Reads the Whole FileSpent parts of two different weeks last year running my cousin's degree attestation for a Gulf job offer. University issues the original. Then it goes to HEC. Then the Ministry of Foreign Affairs. Then the target country's embassy. Four separate offices, four separate stamps, and at every single one of them, someone actually opens the folder and reads the paper inside. I figured digital identity credentials in something like Newton would basically be a faster version of that, every checkpoint still opening the file and reading what's inside, just done through an API instead of a counter window. Reading section six properly, the three roles don't work that way at all. Issuers are the university equivalent here, the entity that actually attests to something about you. A KYC provider, a government agency, a bank, even an onchain analyzer that's watched your wallet's history over time. They sign a credential and hand it over, done. Holder is you, and this is where it splits from the folder my cousin carried between offices. Your credential sits encrypted in your own wallet, and you choose when and to whom you show it, and you can prove one specific fact off it, say your jurisdiction is permitted, without ever revealing the actual country or address underneath. Verifier is the part that actually changed how I think about this. Newton's identity oracle checks the proof inside a TEE enclave, and what comes out the other side is basically a yes or a no, not the underlying data itself. The embassy clerk who checked my cousin's papers saw his full name, his university, his transcript. Newton's verifier structurally can't see any of that, the result just folds straight into the policy check. The credential categories table is what made this concrete instead of abstract. KYC and KYB run through issuer signature plus TEE. Sanctions and watchlist status get a real time feed plus attestation, so it refreshes instead of sitting static like a stamped page from years back. Financial credentials, credit score or income, run through issuer signature plus a zero knowledge proof, meaning a lender confirms you clear a threshold without ever learning your actual number. Onchain behavior gets checked through onchain analysis plus attestation. Jurisdiction pairs issuer signature with selective disclosure. Accreditation is just an issuer signature on its own, the simplest of the seven. Travel Rule attribution needs issuer signature plus the credential itself, tied to the specific compliance transfer it's covering. What I haven't worked out yet is portability in practice. The paper says a KYC credential verified once for one application can get reused elsewhere without repeating the process, which sounds a lot like what attestation offices already claim, that once HEC signs off, nobody downstream should need to recheck from scratch. In practice everyone downstream still rechecks anyway. Not clear to me yet if Newton's verifiers actually trust each other's prior attestations the way that's described, or if every new application ends up demanding its own fresh proof regardless of what already got verified. The real test for $NEWT isn't the three roles looking clean on a diagram, it's whether a credential verified once by one application actually gets accepted downstream without a second full recheck, the exact promise attestation offices already make and don't really keep. Anyone here gone through degree or document attestation for a job abroad? Curious how many separate offices ended up touching your paperwork before it finally counted as done. @NewtonProtocol #Newt $NEWT $VELVET $LAB

Nobody Reads the Whole File

Spent parts of two different weeks last year running my cousin's degree attestation for a Gulf job offer. University issues the original. Then it goes to HEC. Then the Ministry of Foreign Affairs. Then the target country's embassy. Four separate offices, four separate stamps, and at every single one of them, someone actually opens the folder and reads the paper inside.
I figured digital identity credentials in something like Newton would basically be a faster version of that, every checkpoint still opening the file and reading what's inside, just done through an API instead of a counter window.
Reading section six properly, the three roles don't work that way at all.
Issuers are the university equivalent here, the entity that actually attests to something about you. A KYC provider, a government agency, a bank, even an onchain analyzer that's watched your wallet's history over time. They sign a credential and hand it over, done. Holder is you, and this is where it splits from the folder my cousin carried between offices. Your credential sits encrypted in your own wallet, and you choose when and to whom you show it, and you can prove one specific fact off it, say your jurisdiction is permitted, without ever revealing the actual country or address underneath.
Verifier is the part that actually changed how I think about this. Newton's identity oracle checks the proof inside a TEE enclave, and what comes out the other side is basically a yes or a no, not the underlying data itself. The embassy clerk who checked my cousin's papers saw his full name, his university, his transcript. Newton's verifier structurally can't see any of that, the result just folds straight into the policy check.
The credential categories table is what made this concrete instead of abstract. KYC and KYB run through issuer signature plus TEE. Sanctions and watchlist status get a real time feed plus attestation, so it refreshes instead of sitting static like a stamped page from years back. Financial credentials, credit score or income, run through issuer signature plus a zero knowledge proof, meaning a lender confirms you clear a threshold without ever learning your actual number. Onchain behavior gets checked through onchain analysis plus attestation. Jurisdiction pairs issuer signature with selective disclosure. Accreditation is just an issuer signature on its own, the simplest of the seven. Travel Rule attribution needs issuer signature plus the credential itself, tied to the specific compliance transfer it's covering.
What I haven't worked out yet is portability in practice. The paper says a KYC credential verified once for one application can get reused elsewhere without repeating the process, which sounds a lot like what attestation offices already claim, that once HEC signs off, nobody downstream should need to recheck from scratch. In practice everyone downstream still rechecks anyway. Not clear to me yet if Newton's verifiers actually trust each other's prior attestations the way that's described, or if every new application ends up demanding its own fresh proof regardless of what already got verified.
The real test for $NEWT isn't the three roles looking clean on a diagram, it's whether a credential verified once by one application actually gets accepted downstream without a second full recheck, the exact promise attestation offices already make and don't really keep.
Anyone here gone through degree or document attestation for a job abroad? Curious how many separate offices ended up touching your paperwork before it finally counted as done.
@NewtonProtocol #Newt $NEWT
$VELVET $LAB
Been part of a kameti with my street for over two years. Every month a different person holds the pool, then it passes on. Nobody holds that job permanently, that's the whole point, if the same guy collected it every month, people would start worrying he's going to walk off with it. I assumed Newton's Gateway worked nothing like that. It's described as the developer facing entry point, so I figured that meant one fixed piece sitting in the middle forever. Wrong assumption, but not for the reason I expected. The Gateway's orchestration role is built to rotate every epoch. VRF based leader selection decides which operator runs that window, then it passes to someone else, similar to how Ethereum rotates its own block proposers, and any registered operator is a candidate for the seat. Whoever's holding the job, rotating or not, still can't forge a signature or quietly bury a bad result, since every other operator already signed their own piece independently. There's even a fallback if things stall, applications can submit straight to the operator network and skip the Gateway completely. Here's the catch I only caught on a second read. The paper calls this rotation the gateway's target architecture, and separately mentions a state before rotation is deployed. Reads like the rotating part itself might still be getting built, not live yet. The real test for $NEWT isn't operators being unable to forge results today, it's whether that rotation actually ships so nobody gets comfortable holding the seat. Anyone else run a kameti or committee system back home? How long before the turn comes back around to you? @NewtonProtocol #Newt $NEWT $MAGMA $LAB
Been part of a kameti with my street for over two years. Every month a different person holds the pool, then it passes on. Nobody holds that job permanently, that's the whole point, if the same guy collected it every month, people would start worrying he's going to walk off with it.

I assumed Newton's Gateway worked nothing like that. It's described as the developer facing entry point, so I figured that meant one fixed piece sitting in the middle forever.

Wrong assumption, but not for the reason I expected.

The Gateway's orchestration role is built to rotate every epoch. VRF based leader selection decides which operator runs that window, then it passes to someone else, similar to how Ethereum rotates its own block proposers, and any registered operator is a candidate for the seat. Whoever's holding the job, rotating or not, still can't forge a signature or quietly bury a bad result, since every other operator already signed their own piece independently. There's even a fallback if things stall, applications can submit straight to the operator network and skip the Gateway completely.

Here's the catch I only caught on a second read. The paper calls this rotation the gateway's target architecture, and separately mentions a state before rotation is deployed. Reads like the rotating part itself might still be getting built, not live yet.

The real test for $NEWT isn't operators being unable to forge results today, it's whether that rotation actually ships so nobody gets comfortable holding the seat.

Anyone else run a kameti or committee system back home? How long before the turn comes back around to you?
@NewtonProtocol #Newt $NEWT
$MAGMA $LAB
Частичная правда
Статья
One Signature, No Phone CallGot stopped near a toll plaza on the motorway two weeks back, token tax paid and receipt in hand from an Islamabad office barely two months old. The guy checking couldn't pull it up on his end. Ended up standing there almost twenty minutes while he rang someone to confirm the payment was real before waving me through. I walked away thinking that's just how it works, you pay once at the source, but every single checkpoint down the line has to independently trust it, and if their system's not synced, you're stuck till a phone call sorts it out. That memory sat with me while I got into Newton's cross-chain section this week, because operators face almost the exact same problem, just at a much bigger scale and with real money attached. My first read, I figured cross-chain just meant an operator signs up separately on every chain Newton runs on, register on Arbitrum, register again on Base, same paperwork four or five times. Or worse, some third party sitting in the middle relaying operator info between chains, basically the crypto version of that phone call at the toll booth, a trusted go-between everyone has to wait on. Neither is actually what's happening. Newton splits this into a source chain and a set of destination chains, and it's a real split, not just naming. Ethereum is the source, that's where an operator actually registers, stakes restaked ETH through EigenLayer, and where slashing happens if they misbehave. Arbitrum, Optimism, Polygon, Base, these are destination chains, they're where the actual policy evaluation and transaction authorization runs. An operator never re-registers on any of them. Here's the part that clicked for me. Whenever something changes on the source chain, new operator joins, someone gets slashed, stake gets updated, the operators themselves collectively produce a BLS-signed Merkle root of the current operator table. Not a company, not a designated bridge, the operator set signs its own updated record. That signed root then gets carried to each destination chain by relayers, and the paper's specific that these relayers are permissionless, anyone can run one. The destination chain just checks the aggregate signature against the operator set it already knows, and updates itself. No phone call, no waiting on a trusted middleman, the proof carries its own trust. That's also why it lines up with EigenLayer's ELIP-008 multi-chain verification spec instead of Newton inventing something from scratch, which honestly made me trust the design a bit more. Practical result is a policy written once runs the same everywhere Newton operates, same operators, same stake backing it, same slashing rules, regardless of which chain the transaction actually lands on. Where I'm stuck is the relayer side. Permissionless is great in theory, but somebody still has to actually run one and bother carrying that signed root over. The paper doesn't say what happens in the gap if no relayer picks it up for a while, or what incentive keeps them showing up consistently. Might just be sitting in the technical whitepaper and I haven't gotten to it yet. The real test for $NEWT isn't the source and destination chain split looking clean on paper, it's whether that sync actually stays fast enough once operator sets start changing often across five or six chains at once, not just this simple two chain example. Anyone dealt with a paid registration or tax record not showing up yet at a different office or checkpoint? Curious how long yours took to actually sync up. @NewtonProtocol #Newt $NEWT $TAIKO $VELVET

One Signature, No Phone Call

Got stopped near a toll plaza on the motorway two weeks back, token tax paid and receipt in hand from an Islamabad office barely two months old. The guy checking couldn't pull it up on his end. Ended up standing there almost twenty minutes while he rang someone to confirm the payment was real before waving me through.
I walked away thinking that's just how it works, you pay once at the source, but every single checkpoint down the line has to independently trust it, and if their system's not synced, you're stuck till a phone call sorts it out.
That memory sat with me while I got into Newton's cross-chain section this week, because operators face almost the exact same problem, just at a much bigger scale and with real money attached.
My first read, I figured cross-chain just meant an operator signs up separately on every chain Newton runs on, register on Arbitrum, register again on Base, same paperwork four or five times. Or worse, some third party sitting in the middle relaying operator info between chains, basically the crypto version of that phone call at the toll booth, a trusted go-between everyone has to wait on.
Neither is actually what's happening.
Newton splits this into a source chain and a set of destination chains, and it's a real split, not just naming. Ethereum is the source, that's where an operator actually registers, stakes restaked ETH through EigenLayer, and where slashing happens if they misbehave. Arbitrum, Optimism, Polygon, Base, these are destination chains, they're where the actual policy evaluation and transaction authorization runs. An operator never re-registers on any of them.
Here's the part that clicked for me. Whenever something changes on the source chain, new operator joins, someone gets slashed, stake gets updated, the operators themselves collectively produce a BLS-signed Merkle root of the current operator table. Not a company, not a designated bridge, the operator set signs its own updated record. That signed root then gets carried to each destination chain by relayers, and the paper's specific that these relayers are permissionless, anyone can run one. The destination chain just checks the aggregate signature against the operator set it already knows, and updates itself. No phone call, no waiting on a trusted middleman, the proof carries its own trust.
That's also why it lines up with EigenLayer's ELIP-008 multi-chain verification spec instead of Newton inventing something from scratch, which honestly made me trust the design a bit more.
Practical result is a policy written once runs the same everywhere Newton operates, same operators, same stake backing it, same slashing rules, regardless of which chain the transaction actually lands on.
Where I'm stuck is the relayer side. Permissionless is great in theory, but somebody still has to actually run one and bother carrying that signed root over. The paper doesn't say what happens in the gap if no relayer picks it up for a while, or what incentive keeps them showing up consistently. Might just be sitting in the technical whitepaper and I haven't gotten to it yet.
The real test for $NEWT isn't the source and destination chain split looking clean on paper, it's whether that sync actually stays fast enough once operator sets start changing often across five or six chains at once, not just this simple two chain example.
Anyone dealt with a paid registration or tax record not showing up yet at a different office or checkpoint? Curious how long yours took to actually sync up.
@NewtonProtocol #Newt $NEWT
$TAIKO $VELVET
Частичная правда
My cousin's bank account got frozen for six days last month, just for cashing out a P2P trade on Binance. Some random inflow triggered a flag and his salary account got locked with zero explanation. I told him at least crypto doesn't work that way, once it's onchain nobody can touch it. Basically gospel in every group chat I'm in. Turns out that gospel isn't as solid as I thought. There's a stat in Newton's whitepaper I hadn't seen anywhere else. Out of 166 blockchains actually studied, 16 already have fund freezing built into the protocol itself, not an exchange, the chain. Another 19 could add it with minor changes. Over a fifth of networks studied, one small upgrade away from a freeze switch, and most holders have no idea which bucket their chain falls into. Here's the pivot though. Newton isn't selling nothing can ever be frozen. It's going after the part that stings, freezing happening quietly with zero visibility into why. Its authorization model is built to make holds provable and governed instead of a black box call from one admin key. What I'm genuinely unsure about is the ceiling here. If freeze capability is baked into a chain's own base layer, does a layer sitting above execution actually change that risk, or does it only fix things for chains that never had this problem to begin with. The real test for NEWT isn't the freezing stat itself, it's whether Newton's transparency actually reaches into chains that already have a freeze switch baked in. Anyone here had a bank account frozen over a P2P trade? Curious how long yours took to clear. @NewtonProtocol #Newt $NEWT $NFP $BASED
My cousin's bank account got frozen for six days last month, just for cashing out a P2P trade on Binance. Some random inflow triggered a flag and his salary account got locked with zero explanation.

I told him at least crypto doesn't work that way, once it's onchain nobody can touch it. Basically gospel in every group chat I'm in.

Turns out that gospel isn't as solid as I thought.

There's a stat in Newton's whitepaper I hadn't seen anywhere else. Out of 166 blockchains actually studied, 16 already have fund freezing built into the protocol itself, not an exchange, the chain. Another 19 could add it with minor changes. Over a fifth of networks studied, one small upgrade away from a freeze switch, and most holders have no idea which bucket their chain falls into.

Here's the pivot though. Newton isn't selling nothing can ever be frozen. It's going after the part that stings, freezing happening quietly with zero visibility into why. Its authorization model is built to make holds provable and governed instead of a black box call from one admin key.

What I'm genuinely unsure about is the ceiling here. If freeze capability is baked into a chain's own base layer, does a layer sitting above execution actually change that risk, or does it only fix things for chains that never had this problem to begin with.

The real test for NEWT isn't the freezing stat itself, it's whether Newton's transparency actually reaches into chains that already have a freeze switch baked in.

Anyone here had a bank account frozen over a P2P trade? Curious how long yours took to clear.
@NewtonProtocol #Newt $NEWT
$NFP $BASED
Проверено
Статья
Agree First, Sign SecondMe and three friends had a small bet running last weekend on where BTC would close Sunday night. Nothing big, just bragging rights and a round of chai on the loser. When the moment came to actually check, we all pulled out our phones at once. Mine showed one number, my friend's Binance app was a few dollars off because his had lagged for a second, and a third guy was looking at a completely different exchange. We spent almost ten minutes arguing about whose number counted before somebody just said screw it, we'll all refresh together and use that one. That memory came right back to me reading Newton's Prepare/Evaluate section this week. My first assumption was the obvious one, more operators independently checking a sanctions list or a price feed sounds like extra safety, more eyes catching more problems. Turns out that's only half the story, and the part I missed is actually the harder engineering problem. If every operator fetches live data on its own, through its own network path, at its own moment, they will almost never get the exact same number back. Prices tick constantly. A feed updates mid request. That's just what independent fetching looks like in practice, my little bet proved that with four phones in the same room. Here's where it gets serious though. Newton's attestations rely on BLS signature aggregation, and that only works if every signer is signing the literal same message. Not a similar message, not a close enough number, the identical bytes. So if five operators each evaluated a policy against their own slightly different price or sanctions snapshot, you'd get five different results and five signatures that can never combine into one valid attestation. The whole system would just stall out. Once that clicked, the two phase split stopped looking like extra complexity and started looking like the only way this could actually work. Prepare phase is where the independence happens. Every operator runs its own sandboxed data fetch, on its own path, no one waiting on the slowest node, streaming answers back as they finish. Then the Gateway takes all those independent numbers and runs a median across them, producing one canonical dataset. Evaluate phase is where agreement happens. That single canonical dataset goes back out, operators pull the actual Rego policy off IPFS by its content hash so they're all running the exact same rule file, evaluate against the exact same data, and only then sign. Same policy plus same data equals identical digest, and that's what makes the signatures aggregate cleanly. The aggregator doesn't even wait for everyone, it stops the moment enough stake weighted operators clear quorum. Small detail I liked, not every transaction needs the full two step dance. If the policy data is already fixed or cached, Newton skips straight to evaluation in one round trip instead of two. Where I'm still a bit stuck is who I'd trust to compute that median honestly. The Gateway is the one producing the canonical number in between the two phases, and the paper is clear the Gateway can't forge a signature or alter a result without operators catching it, since each one already attested to what it personally observed in the Prepare phase. What I couldn't find spelled out is whether operators actually cross check that median against those original attestations before signing in Evaluate, or whether they just trust what gets republished to them. Maybe that's in the technical whitepaper and I just haven't gone through it properly yet. The real test for NEWT isn't whether the two phase design works on a whiteboard, it's whether that median step stays honest and fast enough once the data being fetched moves in milliseconds, not something you can settle with a chai bet and a reload. Anyone else had a group argument over whose app had the "real" price before settling something? Curious how you all ended up picking one number. @NewtonProtocol #Newt $NEWT $SYN $LAB {spot}(NEWTUSDT)

Agree First, Sign Second

Me and three friends had a small bet running last weekend on where BTC would close Sunday night. Nothing big, just bragging rights and a round of chai on the loser. When the moment came to actually check, we all pulled out our phones at once. Mine showed one number, my friend's Binance app was a few dollars off because his had lagged for a second, and a third guy was looking at a completely different exchange. We spent almost ten minutes arguing about whose number counted before somebody just said screw it, we'll all refresh together and use that one.
That memory came right back to me reading Newton's Prepare/Evaluate section this week.
My first assumption was the obvious one, more operators independently checking a sanctions list or a price feed sounds like extra safety, more eyes catching more problems. Turns out that's only half the story, and the part I missed is actually the harder engineering problem. If every operator fetches live data on its own, through its own network path, at its own moment, they will almost never get the exact same number back. Prices tick constantly. A feed updates mid request. That's just what independent fetching looks like in practice, my little bet proved that with four phones in the same room.
Here's where it gets serious though. Newton's attestations rely on BLS signature aggregation, and that only works if every signer is signing the literal same message. Not a similar message, not a close enough number, the identical bytes. So if five operators each evaluated a policy against their own slightly different price or sanctions snapshot, you'd get five different results and five signatures that can never combine into one valid attestation. The whole system would just stall out.
Once that clicked, the two phase split stopped looking like extra complexity and started looking like the only way this could actually work.
Prepare phase is where the independence happens. Every operator runs its own sandboxed data fetch, on its own path, no one waiting on the slowest node, streaming answers back as they finish. Then the Gateway takes all those independent numbers and runs a median across them, producing one canonical dataset. Evaluate phase is where agreement happens. That single canonical dataset goes back out, operators pull the actual Rego policy off IPFS by its content hash so they're all running the exact same rule file, evaluate against the exact same data, and only then sign. Same policy plus same data equals identical digest, and that's what makes the signatures aggregate cleanly. The aggregator doesn't even wait for everyone, it stops the moment enough stake weighted operators clear quorum.
Small detail I liked, not every transaction needs the full two step dance. If the policy data is already fixed or cached, Newton skips straight to evaluation in one round trip instead of two.
Where I'm still a bit stuck is who I'd trust to compute that median honestly. The Gateway is the one producing the canonical number in between the two phases, and the paper is clear the Gateway can't forge a signature or alter a result without operators catching it, since each one already attested to what it personally observed in the Prepare phase. What I couldn't find spelled out is whether operators actually cross check that median against those original attestations before signing in Evaluate, or whether they just trust what gets republished to them. Maybe that's in the technical whitepaper and I just haven't gone through it properly yet.
The real test for NEWT isn't whether the two phase design works on a whiteboard, it's whether that median step stays honest and fast enough once the data being fetched moves in milliseconds, not something you can settle with a chai bet and a reload.
Anyone else had a group argument over whose app had the "real" price before settling something? Curious how you all ended up picking one number.
@NewtonProtocol #Newt $NEWT
$SYN
$LAB
I've lost count of how many CreatorPad whitepapers open with "the next L1" or "a wallet built different." Same pitch, new logo, I skim past and move on. So when I opened Newton's paper I was ready to skim past section four the same way. Then I actually read "What Newton Is NOT" and stopped scrolling. Most projects open with what they are. Newton opens with what it refuses to be. Not a blockchain, it runs across chains that exist already. Not a wallet, you keep your own keys, it only adds a check before your transaction fires. Not a compliance vendor either, no single company holds your KYC documents in some database waiting to get breached, it's encrypted references plus a quorum of operators who each hold a piece of the key. Dig one layer deeper though and the whitepaper admits something most projects would gloss over. Right now operators do see your data in plaintext once they're evaluating a policy. The version where nobody sees anything, full blind evaluation, is being built, not live yet. That's the kind of detail that makes me trust a paper more, not less, most projects would never admit a limitation like that. Still not fully sold that admitting a gap is the same as closing it, and there's no timeline in the paper for when it actually ships. The real test for NEWT isn't the negative space pitch, it's whether "not a vendor" still holds once real institutional volume hits the network and that blind spot actually closes. Anyone else trust a whitepaper more when it admits what's not built yet instead of pretending everything's already live? @NewtonProtocol #Newt $NEWT $SYN $DYDX
I've lost count of how many CreatorPad whitepapers open with "the next L1" or "a wallet built different." Same pitch, new logo, I skim past and move on.

So when I opened Newton's paper I was ready to skim past section four the same way. Then I actually read "What Newton Is NOT" and stopped scrolling.

Most projects open with what they are. Newton opens with what it refuses to be. Not a blockchain, it runs across chains that exist already. Not a wallet, you keep your own keys, it only adds a check before your transaction fires. Not a compliance vendor either, no single company holds your KYC documents in some database waiting to get breached, it's encrypted references plus a quorum of operators who each hold a piece of the key.

Dig one layer deeper though and the whitepaper admits something most projects would gloss over. Right now operators do see your data in plaintext once they're evaluating a policy. The version where nobody sees anything, full blind evaluation, is being built, not live yet.

That's the kind of detail that makes me trust a paper more, not less, most projects would never admit a limitation like that. Still not fully sold that admitting a gap is the same as closing it, and there's no timeline in the paper for when it actually ships.

The real test for NEWT isn't the negative space pitch, it's whether "not a vendor" still holds once real institutional volume hits the network and that blind spot actually closes.

Anyone else trust a whitepaper more when it admits what's not built yet instead of pretending everything's already live?
@NewtonProtocol #Newt $NEWT
$SYN $DYDX
Статья
Three Pillars, One MechanismThree different apps asked me for the same KYC documents this month. Same selfie, same ID, same address proof, uploaded three separate times for three platforms that have nothing to do with each other. By the third one I was just annoyed, not because the process is hard, but because none of them remember me from the last one. That frustration is basically why I kept rereading the "Three Pillars" section of Newton's whitepaper instead of skimming past it like I usually do with architecture sections. My first read, I treated Verifiable Credentials, programmable policies, and cross-chain operators like three separate features you'd list on a comparison chart. Pick the one you need. Identity verification, that's pillar one. Rule writing, pillar two. Multi-chain support, pillar three. Three checkboxes. Second read changed that completely. None of these three actually do anything on their own. A verifiable credential sitting in your wallet proving you're KYC'd and not sanctioned is just data, it doesn't stop a transaction or approve one. It needs something to check it against. A Rego policy that says block sanctioned addresses, cap daily transfers, require accredited status is just a rulebook with nothing to evaluate, it needs identity data feeding into it before it means anything. And operators running consensus across Ethereum and chains like Arbitrum or Base are just validators with no job if there's no policy to evaluate and no credential to verify in the first place. Pull any one leg out and the other two are dead weight. The whitepaper's own walkthrough makes this obvious once you actually trace it. A $50k USDC transfer gets submitted, operators don't just check one thing, they pull the sender's jurisdiction and sanctions status from their credentials, run that data through the composed policy stack, sanctions check, velocity limit, source of funds, and only then sign off, BLS-aggregate the signatures, and hand back one attestation the smart contract can verify. That's not three products stacked on top of each other. That's one motion where credentials feed the policy and operators are the ones actually running it, across whichever chain the transaction happens to land on. There's a neutrality piece that makes this click even harder. A bank running strict accredited-investor checks and a DeFi protocol that barely gates anyone can run on the exact same operator network, same credential system, same policy engine, just configured completely differently. That only works because the three pieces aren't bundled into one fixed product, they're more like three slots that get filled differently depending on who's plugging in. Same engine, different policy plugged in, different credential requirements checked, still one mechanism underneath both. Where I land now is that the "three pillars" framing undersells it a bit. It's less like three pillars holding up a roof and more like one mechanism with three moving parts, take one out and the other two seize up. What I'm still not sure about is the portability promise in practice. Verified once, reused everywhere sounds great on a whitepaper page, but getting competing platforms to actually accept someone else's verification instead of running their own is a business problem as much as a technical one. The crypto exchanges I deal with for my KYC headaches each have their own reasons to want my documents in their own system. Whether Newton's neutrality pitch is enough to get them trust a shared credential instead of hoarding their own data, that's the part the architecture diagram can't answer for me. The real test for NEWT isn't whether the three pillars work together on paper, it's whether enough platforms actually plug into the same operator network instead of each building their own walled version of it. Anyone else dealt with the repeat-KYC grind across multiple platforms this month? Curious if this kind of shared verification model would actually get adopted or if everyone just keeps hoarding their own user data anyway @NewtonProtocol #Newt $NEWT $VELVET {spot}(NEWTUSDT) $RE

Three Pillars, One Mechanism

Three different apps asked me for the same KYC documents this month. Same selfie, same ID, same address proof, uploaded three separate times for three platforms that have nothing to do with each other. By the third one I was just annoyed, not because the process is hard, but because none of them remember me from the last one.
That frustration is basically why I kept rereading the "Three Pillars" section of Newton's whitepaper instead of skimming past it like I usually do with architecture sections.
My first read, I treated Verifiable Credentials, programmable policies, and cross-chain operators like three separate features you'd list on a comparison chart. Pick the one you need. Identity verification, that's pillar one. Rule writing, pillar two. Multi-chain support, pillar three. Three checkboxes.
Second read changed that completely.
None of these three actually do anything on their own. A verifiable credential sitting in your wallet proving you're KYC'd and not sanctioned is just data, it doesn't stop a transaction or approve one. It needs something to check it against. A Rego policy that says block sanctioned addresses, cap daily transfers, require accredited status is just a rulebook with nothing to evaluate, it needs identity data feeding into it before it means anything. And operators running consensus across Ethereum and chains like Arbitrum or Base are just validators with no job if there's no policy to evaluate and no credential to verify in the first place.
Pull any one leg out and the other two are dead weight.
The whitepaper's own walkthrough makes this obvious once you actually trace it. A $50k USDC transfer gets submitted, operators don't just check one thing, they pull the sender's jurisdiction and sanctions status from their credentials, run that data through the composed policy stack, sanctions check, velocity limit, source of funds, and only then sign off, BLS-aggregate the signatures, and hand back one attestation the smart contract can verify. That's not three products stacked on top of each other. That's one motion where credentials feed the policy and operators are the ones actually running it, across whichever chain the transaction happens to land on.
There's a neutrality piece that makes this click even harder. A bank running strict accredited-investor checks and a DeFi protocol that barely gates anyone can run on the exact same operator network, same credential system, same policy engine, just configured completely differently. That only works because the three pieces aren't bundled into one fixed product, they're more like three slots that get filled differently depending on who's plugging in. Same engine, different policy plugged in, different credential requirements checked, still one mechanism underneath both.
Where I land now is that the "three pillars" framing undersells it a bit. It's less like three pillars holding up a roof and more like one mechanism with three moving parts, take one out and the other two seize up.
What I'm still not sure about is the portability promise in practice. Verified once, reused everywhere sounds great on a whitepaper page, but getting competing platforms to actually accept someone else's verification instead of running their own is a business problem as much as a technical one. The crypto exchanges I deal with for my KYC headaches each have their own reasons to want my documents in their own system. Whether Newton's neutrality pitch is enough to get them trust a shared credential instead of hoarding their own data, that's the part the architecture diagram can't answer for me.
The real test for NEWT isn't whether the three pillars work together on paper, it's whether enough platforms actually plug into the same operator network instead of each building their own walled version of it.
Anyone else dealt with the repeat-KYC grind across multiple platforms this month? Curious if this kind of shared verification model would actually get adopted or if everyone just keeps hoarding their own user data anyway
@NewtonProtocol #Newt $NEWT
$VELVET
$RE
My card got declined at a fuel station two days ago. Spending limit hit, blocked instantly, before a single rupee left my account. Annoying in the moment, but it got me stuck on something I'd skimmed past while reading through Newton Protocol's whitepaper. I always assumed blockchains already handled this. Like execution and approval were the same motion, no separate step, that's the whole pitch right, no middlemen needed. Turns out I had that backwards. Settlement is what chains are actually great at. Final, deterministic, no take backs. Authorization is a completely different question, should this transaction even happen, is the sender clean, are they under some limit, and that check has basically been missing onchain this whole time. Visa figured this out decades ago, approving your swipe in real time and settling with the bank after. Crypto jumped straight to settlement and skipped building the approval step entirely. That's what Newton is actually building. Not another compliance dashboard, an authorization layer sitting between intent and execution, with operators staking real capital through EigenLayer to back what they sign off on. Still chewing on one part though. Operators need to be vetted enough to be accountable, but the moment you vet anyone you've added a gatekeeper. Newton frames it as decentralized for neutrality, permissioned for quality. I get the logic, not fully sold yet on how that balance holds once real volume hits it. The real test for NEWT isn't the architecture, it's whether this stays neutral once real money and real regulators show up. Anyone else assume settlement and authorization were the same thing before, or was that just me? @NewtonProtocol #Newt $NEWT $LAB $RE
My card got declined at a fuel station two days ago. Spending limit hit, blocked instantly, before a single rupee left my account. Annoying in the moment, but it got me stuck on something I'd skimmed past while reading through Newton Protocol's whitepaper.
I always assumed blockchains already handled this. Like execution and approval were the same motion, no separate step, that's the whole pitch right, no middlemen needed. Turns out I had that backwards.
Settlement is what chains are actually great at. Final, deterministic, no take backs. Authorization is a completely different question, should this transaction even happen, is the sender clean, are they under some limit, and that check has basically been missing onchain this whole time. Visa figured this out decades ago, approving your swipe in real time and settling with the bank after. Crypto jumped straight to settlement and skipped building the approval step entirely.
That's what Newton is actually building. Not another compliance dashboard, an authorization layer sitting between intent and execution, with operators staking real capital through EigenLayer to back what they sign off on.
Still chewing on one part though. Operators need to be vetted enough to be accountable, but the moment you vet anyone you've added a gatekeeper. Newton frames it as decentralized for neutrality, permissioned for quality. I get the logic, not fully sold yet on how that balance holds once real volume hits it.
The real test for NEWT isn't the architecture, it's whether this stays neutral once real money and real regulators show up.
Anyone else assume settlement and authorization were the same thing before, or was that just me?
@NewtonProtocol #Newt $NEWT
$LAB $RE
@OpenGradient I went looking for one AlphaSense product and found out it's actually four, each solving a completely different problem. My first assumption was that AlphaSense meant one signal, probably price prediction, wrapped in some verification layer. That assumption fell apart fast once I actually mapped out what's under that name. Volatility AlphaSense gives continuous forecasts, the kind an AMM would use to scale fees up when conditions get choppy, or a lending protocol would use to adjust loan-to-value limits before things get messy. PriceForecast does something narrower, spot return predictions from time-series models, closer to what a trading bot would actually consume. Sybil AlphaSense flips away from price entirely and analyzes wallet addresses to flag fake accounts, which matters most for airdrops and governance votes. Markowitz AlphaSense runs mean-variance optimization to suggest portfolio weights, which is portfolio manager territory, not trader territory. Four signals, four different consumers, all wrapped in the same verified inference pipeline underneath. What actually changes my view here is realizing none of these are competing with each other for the same slot in a DeFi stack. A lending protocol might use Volatility for risk parameters and Sybil for governance integrity at the same time, with zero overlap. I haven't seen real integration data yet, just the product description, so I'm holding judgment on accuracy until someone shares actual numbers. Which of these four would you trust first with real capital behind it? #OPG $OPG $LAB $RE
@OpenGradient

I went looking for one AlphaSense product and found out it's actually four, each solving a completely different problem.

My first assumption was that AlphaSense meant one signal, probably price prediction, wrapped in some verification layer. That assumption fell apart fast once I actually mapped out what's under that name.

Volatility AlphaSense gives continuous forecasts, the kind an AMM would use to scale fees up when conditions get choppy, or a lending protocol would use to adjust loan-to-value limits before things get messy. PriceForecast does something narrower, spot return predictions from time-series models, closer to what a trading bot would actually consume. Sybil AlphaSense flips away from price entirely and analyzes wallet addresses to flag fake accounts, which matters most for airdrops and governance votes. Markowitz AlphaSense runs mean-variance optimization to suggest portfolio weights, which is portfolio manager territory, not trader territory.

Four signals, four different consumers, all wrapped in the same verified inference pipeline underneath.

What actually changes my view here is realizing none of these are competing with each other for the same slot in a DeFi stack. A lending protocol might use Volatility for risk parameters and Sybil for governance integrity at the same time, with zero overlap.

I haven't seen real integration data yet, just the product description, so I'm holding judgment on accuracy until someone shares actual numbers.

Which of these four would you trust first with real capital behind it?
#OPG $OPG
$LAB $RE
@OpenGradient I tried to estimate what the tenth key on a Twin.fun twin would cost versus the hundredth, and the gap was bigger than I expected going in. I had assumed a bonding curve just meant price goes up as supply goes up, roughly linear, nothing dramatic. That assumption broke once I actually looked at the formula. Price is based on the sum of squares of the supply range you're buying into, divided by a fixed constant. Squaring means the curve doesn't climb steadily, it accelerates. Early keys are genuinely cheap. Late keys get expensive fast, not gradually. That changes how I'd think about timing here. Being early on a popular twin isn't just a nice-to-have, the math actively rewards it and punishes latecomers more than a linear curve would. Two fees get taken on every single trade, buy or sell. One goes to the protocol treasury. The other goes directly to whoever owns that twin. So a twin's creator earns every time their keys change hands, not just once at creation. That's a real, ongoing incentive to make the twin worth holding. What actually unlocks once you hold at least one key surprised me a little. It's not just a badge or a name on a list. It's gated access to that twin's chat, tools, and utilities, meaning the key is functioning closer to a subscription pass than a collectible. Still working out whether I'd rather hold one key in five different twins or stack five keys in one. Which approach would you take? #OPG $OPG $VELVET $LAB
@OpenGradient

I tried to estimate what the tenth key on a Twin.fun twin would cost versus the hundredth, and the gap was bigger than I expected going in.

I had assumed a bonding curve just meant price goes up as supply goes up, roughly linear, nothing dramatic. That assumption broke once I actually looked at the formula. Price is based on the sum of squares of the supply range you're buying into, divided by a fixed constant. Squaring means the curve doesn't climb steadily, it accelerates. Early keys are genuinely cheap. Late keys get expensive fast, not gradually.

That changes how I'd think about timing here. Being early on a popular twin isn't just a nice-to-have, the math actively rewards it and punishes latecomers more than a linear curve would.

Two fees get taken on every single trade, buy or sell. One goes to the protocol treasury. The other goes directly to whoever owns that twin. So a twin's creator earns every time their keys change hands, not just once at creation. That's a real, ongoing incentive to make the twin worth holding.

What actually unlocks once you hold at least one key surprised me a little. It's not just a badge or a name on a list. It's gated access to that twin's chat, tools, and utilities, meaning the key is functioning closer to a subscription pass than a collectible.

Still working out whether I'd rather hold one key in five different twins or stack five keys in one.

Which approach would you take?
#OPG $OPG
$VELVET $LAB
@OpenGradient I tried to upload a model I had been fine-tuning and the upload itself worked fine. The part that didn't work was getting it to actually run on-chain. My first assumption was permissionless meant any model, any format, no questions asked. That assumption lasted about ten minutes. Storage on the Model Hub really is open, any format goes up without anyone approving it first. On-chain inference is a different requirement entirely. It has to be ONNX. My model wasn't, so it sat there stored but unusable for verified inference until I converted it. That conversion step is where I actually slowed down. ONNX covers most classical ML cleanly, but plenty of modern architectures don't translate over without some loss or extra work, and the docs don't pretend otherwise. ZKML support narrows things further. It depends on the EZKL library, and EZKL only supports a specific opset range, nine through eighteen. If your model was exported with something outside that window, ZKML proof generation simply isn't an option for it yet, no matter how clean the ONNX conversion looks. So permissionless here means nobody blocks your upload. It does not mean every model gets equal access to every verification tier. Storage is open. Verified inference has format gates, and the strongest verification tier has narrower gates than that. Worth knowing before you assume your model will slot in the same way someone else's already-converted one did. Anyone else hit the opset wall trying to get ZKML working on a custom model? #OPG $OPG $LAB $VELVET
@OpenGradient

I tried to upload a model I had been fine-tuning and the upload itself worked fine. The part that didn't work was getting it to actually run on-chain.

My first assumption was permissionless meant any model, any format, no questions asked. That assumption lasted about ten minutes.

Storage on the Model Hub really is open, any format goes up without anyone approving it first. On-chain inference is a different requirement entirely. It has to be ONNX. My model wasn't, so it sat there stored but unusable for verified inference until I converted it.

That conversion step is where I actually slowed down. ONNX covers most classical ML cleanly, but plenty of modern architectures don't translate over without some loss or extra work, and the docs don't pretend otherwise.

ZKML support narrows things further. It depends on the EZKL library, and EZKL only supports a specific opset range, nine through eighteen. If your model was exported with something outside that window, ZKML proof generation simply isn't an option for it yet, no matter how clean the ONNX conversion looks.

So permissionless here means nobody blocks your upload. It does not mean every model gets equal access to every verification tier. Storage is open. Verified inference has format gates, and the strongest verification tier has narrower gates than that.

Worth knowing before you assume your model will slot in the same way someone else's already-converted one did.

Anyone else hit the opset wall trying to get ZKML working on a custom model?

#OPG $OPG
$LAB $VELVET
@OpenGradient I saw the number first and got impressed before I got curious. 1 million plus inferences. That's a real number to put on a page. Then I asked myself the obvious follow-up question and the excitement cooled a bit. A million inferences over what time period, from how many unique callers, and were any of them retried or duplicated during testing? The metrics page doesn't break that down. It just gives you the headline, 2,000+ models hosted, 100+ developers active, 1,000,000+ inferences processed, all sitting under one line that says testnet. I had been reading these the way I'd read mainnet numbers. They're not the same thing, and conflating them is an easy mistake to make if you're skimming. On testnet, faucet tokens are free, there's no real cost to spamming a request, and developers are often just kicking the tires rather than running production load. None of that makes the numbers fake. It just means they measure curiosity and testing activity, not committed usage. For these same numbers to mean what they look like they mean, mainnet would need to show something harder to fake: inferences paid for with real $OPG, developers who kept building past their first week, and models that get reused by someone other than whoever uploaded them. I'm not saying the testnet traction is nothing. Early numbers usually look exactly like this, inflated by curiosity and thin on retention data. What's the real conversion rate you'd want to see before treating testnet numbers as a signal? #OPG $OPG $SYN $RE
@OpenGradient

I saw the number first and got impressed before I got curious. 1 million plus inferences. That's a real number to put on a page.

Then I asked myself the obvious follow-up question and the excitement cooled a bit.

A million inferences over what time period, from how many unique callers, and were any of them retried or duplicated during testing? The metrics page doesn't break that down. It just gives you the headline, 2,000+ models hosted, 100+ developers active, 1,000,000+ inferences processed, all sitting under one line that says testnet.

I had been reading these the way I'd read mainnet numbers. They're not the same thing, and conflating them is an easy mistake to make if you're skimming.

On testnet, faucet tokens are free, there's no real cost to spamming a request, and developers are often just kicking the tires rather than running production load. None of that makes the numbers fake. It just means they measure curiosity and testing activity, not committed usage.

For these same numbers to mean what they look like they mean, mainnet would need to show something harder to fake: inferences paid for with real $OPG , developers who kept building past their first week, and models that get reused by someone other than whoever uploaded them.

I'm not saying the testnet traction is nothing. Early numbers usually look exactly like this, inflated by curiosity and thin on retention data.

What's the real conversion rate you'd want to see before treating testnet numbers as a signal?
#OPG $OPG
$SYN $RE
@OpenGradient I got my response back in under a second and almost closed the tab thinking the job was done. It wasn't. Not fully. The inference had returned, the TEE attestation looked clean, but none of that was on-chain yet. What I had was a result and a promise that a proof was on its way to validators. The actual settlement, the part where two-thirds of the network agrees and it gets permanently recorded, was still sitting in a queue somewhere behind it. I had been assuming fast response meant verified response. Those are two different moments here, and the gap between them is real. OpenGradient's own design docs call this out directly instead of burying it, which is the only reason I went looking for it in the first place. They name it a trust gap, plainly, no softer word standing in for it. Between the result landing in your hands and the proof finalizing on-chain, you're holding something that looks verified but technically isn't yet. For a chatbot reply, that window probably doesn't matter to anyone. For an agent approving a transaction or a lending protocol pulling a risk score, a few seconds of unverified state sitting in the pipeline is a different kind of risk entirely. Their own answer to this is PIPE, which trades that latency for atomic settlement, but PIPE is still alpha only, so right now this gap is just something you live with. How much of a window would you personally tolerate before calling a result actually verified? #OPG $OPG $SYN $LAB
@OpenGradient

I got my response back in under a second and almost closed the tab thinking the job was done.

It wasn't. Not fully.

The inference had returned, the TEE attestation looked clean, but none of that was on-chain yet. What I had was a result and a promise that a proof was on its way to validators. The actual settlement, the part where two-thirds of the network agrees and it gets permanently recorded, was still sitting in a queue somewhere behind it.

I had been assuming fast response meant verified response. Those are two different moments here, and the gap between them is real.

OpenGradient's own design docs call this out directly instead of burying it, which is the only reason I went looking for it in the first place. They name it a trust gap, plainly, no softer word standing in for it. Between the result landing in your hands and the proof finalizing on-chain, you're holding something that looks verified but technically isn't yet.

For a chatbot reply, that window probably doesn't matter to anyone. For an agent approving a transaction or a lending protocol pulling a risk score, a few seconds of unverified state sitting in the pipeline is a different kind of risk entirely.

Their own answer to this is PIPE, which trades that latency for atomic settlement, but PIPE is still alpha only, so right now this gap is just something you live with.

How much of a window would you personally tolerate before calling a result actually verified?
#OPG $OPG
$SYN $LAB
@OpenGradient I traced one transaction through the alpha testnet expecting a single execution path. It split into three before it even confirmed. The transaction landed in what they call the Inference Mempool. Instead of just sitting there waiting its turn, the mempool simulated it, pulled out the inference call buried inside, and sent that off to run in parallel while the transaction itself stayed pending. That ordering caught me off guard. I had been assuming inference always happens after a transaction lands, the same way an oracle update happens after a price moves. Here it runs before the transaction finishes, not after. Once the model result came back, the original transaction resumed with that result already baked in, then went into the next block. No separate callback, no waiting on an external oracle round trip. The result is just part of the same atomic operation. What this actually buys is removing oracle delay for ML-driven logic, plus letting hundreds of pending inferences run side by side instead of queuing behind each other. I'll say the obvious part though. This is alpha testnet only, not even live on the official testnet yet. Models have to be ONNX format, which rules out a lot of larger architectures. And I haven't seen anything in the docs addressing what happens if the simulated inference and the actual execution environment disagree by the time the transaction resumes. #OPG $OPG $SYN $BAS
@OpenGradient
I traced one transaction through the alpha testnet expecting a single execution path. It split into three before it even confirmed.
The transaction landed in what they call the Inference Mempool. Instead of just sitting there waiting its turn, the mempool simulated it, pulled out the inference call buried inside, and sent that off to run in parallel while the transaction itself stayed pending.
That ordering caught me off guard. I had been assuming inference always happens after a transaction lands, the same way an oracle update happens after a price moves. Here it runs before the transaction finishes, not after.
Once the model result came back, the original transaction resumed with that result already baked in, then went into the next block. No separate callback, no waiting on an external oracle round trip. The result is just part of the same atomic operation.
What this actually buys is removing oracle delay for ML-driven logic, plus letting hundreds of pending inferences run side by side instead of queuing behind each other.
I'll say the obvious part though. This is alpha testnet only, not even live on the official testnet yet. Models have to be ONNX format, which rules out a lot of larger architectures. And I haven't seen anything in the docs addressing what happens if the simulated inference and the actual execution environment disagree by the time the transaction resumes.
#OPG $OPG
$SYN $BAS
@OpenGradient The call failed before it even started, and the error wasn't a model error at all. I sent a prompt to GPT-4.1 through the x402 gateway expecting a normal response. Instead I got an HTTP 402. First thought was that something broke on my end. It wasn't broken. That status code is the whole point. I had been treating this like any other API call, send a prompt, get an answer. It is closer to a payment negotiation with an inference attached at the end. The gateway responds with the 402 first, along with amount owed, chain ID, and an expiry. Only after your wallet signs a payment payload against those exact terms and you resubmit does the TEE node actually run anything. Before that retry works, there's a one-time Permit2 approval sitting in front of everything. I skipped reading that step and spent longer than I want to admit figuring out why my signed payment kept getting rejected. What changed my view is realizing payment and execution are deliberately separated. The facilitator contract checks your signature on Base Sepolia before anything touches a model. Only once that clears does the request route through to GPT, Claude, Gemini, or Grok, and the response comes back with a TEE attestation proving the enclave ran your exact prompt without tampering. Still not sure where settlement mode choice matters in practice. I picked the lightest one for my first call mostly because it was easiest, not because I understood the tradeoff. This proves the prompt went in clean and came out clean. It doesn't prove the model behind that provider's API is the exact version claimed. Different trust problem, and x402 isn't solving that one. The real test isn't the first call working. It's whether the second one feels routine. Anyone compared latency across the settlement modes yet? #OPG $OPG $SYN $RE
@OpenGradient
The call failed before it even started, and the error wasn't a model error at all.
I sent a prompt to GPT-4.1 through the x402 gateway expecting a normal response. Instead I got an HTTP 402. First thought was that something broke on my end.
It wasn't broken. That status code is the whole point.
I had been treating this like any other API call, send a prompt, get an answer. It is closer to a payment negotiation with an inference attached at the end. The gateway responds with the 402 first, along with amount owed, chain ID, and an expiry. Only after your wallet signs a payment payload against those exact terms and you resubmit does the TEE node actually run anything.
Before that retry works, there's a one-time Permit2 approval sitting in front of everything. I skipped reading that step and spent longer than I want to admit figuring out why my signed payment kept getting rejected.
What changed my view is realizing payment and execution are deliberately separated. The facilitator contract checks your signature on Base Sepolia before anything touches a model. Only once that clears does the request route through to GPT, Claude, Gemini, or Grok, and the response comes back with a TEE attestation proving the enclave ran your exact prompt without tampering.
Still not sure where settlement mode choice matters in practice. I picked the lightest one for my first call mostly because it was easiest, not because I understood the tradeoff.
This proves the prompt went in clean and came out clean. It doesn't prove the model behind that provider's API is the exact version claimed. Different trust problem, and x402 isn't solving that one.
The real test isn't the first call working. It's whether the second one feels routine.
Anyone compared latency across the settlement modes yet?
#OPG $OPG
$SYN $RE
One thing I assumed before reading the docs was that more verification is always better. The deeper I went, the less convinced I became. Crypto has trained many of us to think in absolutes. More decentralization is better. More security is better. More verification is better. But real systems rarely work that way. What stood out to me while researching OpenGradient is that verification isn't treated as a single setting. It's treated as a spectrum. And that makes sense. Not every AI task carries the same stakes. A logging operation doesn't need the same guarantees as a financial decision. An AI explanation doesn't necessarily need the same verification as the model producing the result. The interesting part isn't which verification method is "best." It's knowing when each one makes sense. The more I think about it, the more this feels like an infrastructure problem rather than a technology problem. Building useful systems is often about balancing trust, speed, and cost rather than maximizing a single metric. That's one reason I've enjoyed digging into @OpenGradient. Sometimes the most valuable thing you get from research isn't an answer. It's a better framework for thinking about the problem. @OpenGradient #OPG $OPG $SYN $ZEC
One thing I assumed before reading the docs was that more verification is always better.

The deeper I went, the less convinced I became.

Crypto has trained many of us to think in absolutes.

More decentralization is better.

More security is better.

More verification is better.

But real systems rarely work that way.

What stood out to me while researching OpenGradient is that verification isn't treated as a single setting.

It's treated as a spectrum.

And that makes sense.

Not every AI task carries the same stakes.

A logging operation doesn't need the same guarantees as a financial decision.

An AI explanation doesn't necessarily need the same verification as the model producing the result.

The interesting part isn't which verification method is "best."

It's knowing when each one makes sense.

The more I think about it, the more this feels like an infrastructure problem rather than a technology problem.

Building useful systems is often about balancing trust, speed, and cost rather than maximizing a single metric.

That's one reason I've enjoyed digging into @OpenGradient.

Sometimes the most valuable thing you get from research isn't an answer.

It's a better framework for thinking about the problem.
@OpenGradient #OPG $OPG
$SYN $ZEC
One thing I look for when researching a project The more time I spend researching a project, the fewer absolute conclusions I tend to have. It's usually the opposite. I end up with better questions. That happened while I was going through OpenGradient's documentation. A few things I'm still thinking about: • How decentralization evolves as the network grows • What different levels of verification mean in practice • How security mechanisms respond to invalid behavior None of those questions are red flags. If anything, they're the kind of questions that only appear after moving beyond headlines and actually reading the material. Most people in crypto look for reasons to become immediately bullish or bearish. I've found more value in understanding what I don't know yet. What caught my attention about @OpenGradient wasn't that I found every answer. It was that the project seems to be tackling problems that become increasingly important as AI moves toward verifiable and decentralized infrastructure. Sometimes the most useful research doesn't give you certainty. It gives you better questions. @OpenGradient #OPG $OPG $RE $SYN
One thing I look for when researching a project
The more time I spend researching a project, the fewer absolute conclusions I tend to have.
It's usually the opposite.
I end up with better questions.
That happened while I was going through OpenGradient's documentation.
A few things I'm still thinking about:
• How decentralization evolves as the network grows
• What different levels of verification mean in practice
• How security mechanisms respond to invalid behavior
None of those questions are red flags.
If anything, they're the kind of questions that only appear after moving beyond headlines and actually reading the material.
Most people in crypto look for reasons to become immediately bullish or bearish.
I've found more value in understanding what I don't know yet.
What caught my attention about @OpenGradient wasn't that I found every answer.
It was that the project seems to be tackling problems that become increasingly important as AI moves toward verifiable and decentralized infrastructure.
Sometimes the most useful research doesn't give you certainty.
It gives you better questions.
@OpenGradient #OPG $OPG
$RE $SYN
Войдите, чтобы посмотреть больше материала
Присоединяйтесь к пользователям криптовалют по всему миру на Binance Square
⚡️ Получайте новейшую и полезную информацию о криптоактивах.
💬 Нам доверяет крупнейшая в мире криптобиржа.
👍 Получите достоверные аналитические данные от верифицированных создателей контента.
Эл. почта/номер телефона
Структура веб-страницы
Настройки cookie
Правила и условия платформы