<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Sui on Bitsy Services Wiki</title>
    <link>https://wiki.bitsy.services/wiki/defi/sui/</link>
    <description>Recent content in Sui on Bitsy Services Wiki</description>
    <generator>Hugo</generator>
    <language>en</language>
    <atom:link href="https://wiki.bitsy.services/wiki/defi/sui/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>The Object Model</title>
      <link>https://wiki.bitsy.services/wiki/defi/sui/object-model/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/defi/sui/object-model/</guid>
      <description>&lt;p&gt;Sui&amp;rsquo;s single most distinctive idea is that there are no accounts holding balances in the &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/ethereum/&#34;&gt;Ethereum&lt;/a&gt; sense. Everything on-chain — coins, NFTs, AMM pools, published &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/smart-contract&#34;&gt;smart contract&lt;/a&gt; code, configuration — is a discrete, typed &lt;strong&gt;object&lt;/strong&gt;. State is a graph of these objects rather than a global key-value store keyed by address. Understanding this model is the key to understanding why Sui can execute transactions in parallel and why its developers think about ownership the way they do.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Sui Move</title>
      <link>https://wiki.bitsy.services/wiki/defi/sui/sui-move/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/defi/sui/sui-move/</guid>
      <description>&lt;p&gt;Move is a resource-oriented programming language created at Meta for the Diem (Libra) project. When that project wound down, the language survived its sponsor: it now underpins several chains, of which Sui is the most prominent. &lt;strong&gt;Sui Move&lt;/strong&gt; is Mysten Labs&amp;rsquo; dialect, adapted to fit Sui&amp;rsquo;s &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/sui/object-model&#34;&gt;object model&lt;/a&gt; rather than the account storage of the original (&amp;ldquo;core&amp;rdquo;) Move and its other major descendant, Aptos Move. &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/iota/&#34;&gt;IOTA&lt;/a&gt; runs the same Mysten dialect, so the material here applies there too.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Programmable Transaction Blocks</title>
      <link>https://wiki.bitsy.services/wiki/defi/sui/programmable-transaction-blocks/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/defi/sui/programmable-transaction-blocks/</guid>
      <description>&lt;p&gt;A &lt;strong&gt;Programmable Transaction Block&lt;/strong&gt; (PTB) is a single Sui transaction built as an ordered sequence of &lt;em&gt;commands&lt;/em&gt; that execute atomically: either every command succeeds and the whole block commits, or any failure reverts the entire block. The defining feature is that the &lt;strong&gt;output of one command can be fed as the input to a later one&lt;/strong&gt;. Results behave like registers — typed, transient values that live only for the duration of the transaction — so you can wire heterogeneous operations together: &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/sui/sui-move&#34;&gt;Move&lt;/a&gt; calls, &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/sui/object-model&#34;&gt;object&lt;/a&gt; transfers, coin splits and merges, package publishing, and building Move vectors, all in one shot.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Consensus</title>
      <link>https://wiki.bitsy.services/wiki/defi/sui/consensus/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/defi/sui/consensus/</guid>
      <description>&lt;p&gt;Most blockchains funnel every transaction through a single global agreement step: validators must agree on one total order for all transactions before any of them execute. That step is the throughput bottleneck, and it is also where ordering games — front-running, sandwiching — become possible. Sui&amp;rsquo;s central insight is that &lt;em&gt;most&lt;/em&gt; transactions don&amp;rsquo;t actually need a global order at all. Whether a transaction needs consensus depends entirely on the &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/sui/object-model&#34;&gt;object model&lt;/a&gt;: specifically, whether it touches &lt;em&gt;owned&lt;/em&gt; objects or &lt;em&gt;shared&lt;/em&gt; objects.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Gas &amp; Storage</title>
      <link>https://wiki.bitsy.services/wiki/defi/sui/gas-and-storage/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/defi/sui/gas-and-storage/</guid>
      <description>&lt;p&gt;Sui prices a transaction with two meters, not one. Every transaction pays a &lt;strong&gt;computation fee&lt;/strong&gt; for the work the validators do, and a &lt;strong&gt;storage fee&lt;/strong&gt; for the bytes it leaves behind on-chain. The two are quoted, accrued, and reasoned about independently. This is the first thing that surprises anyone arriving from &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/ethereum/&#34;&gt;Ethereum&lt;/a&gt;, where a single gas market bundles execution and state growth into one volatile per-unit price set by an auction. Sui unbundles them deliberately, because the cost of running a computation now and the cost of storing data forever are genuinely different economic problems.&lt;/p&gt;</description>
    </item>
    <item>
      <title>zkLogin</title>
      <link>https://wiki.bitsy.services/wiki/defi/sui/zklogin/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/defi/sui/zklogin/</guid>
      <description>&lt;p&gt;zkLogin is Sui&amp;rsquo;s native primitive for controlling an on-chain address with an existing Web2 login. A user signs in with Google, Apple, Facebook, Twitch, or any other OpenID Connect provider, and from that login alone derives and operates a fully self-custodial Sui address — no seed phrase, no browser extension, no private key for the user to back up. It is the mechanism behind the onboarding pitch in the &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/sui/&#34;&gt;Sui overview&lt;/a&gt;: log in with Google, start transacting.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Walrus</title>
      <link>https://wiki.bitsy.services/wiki/defi/sui/walrus/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/defi/sui/walrus/</guid>
      <description>&lt;p&gt;Walrus is Mysten Labs&amp;rsquo; decentralized blob-storage network, built to give &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/sui/&#34;&gt;Sui&lt;/a&gt; applications a place to put large data that no &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/blockchain&#34;&gt;blockchain&lt;/a&gt; is designed to hold. It went to mainnet on &lt;strong&gt;March 27, 2025&lt;/strong&gt;, alongside its native &lt;strong&gt;WAL&lt;/strong&gt; token, and forms the storage leg of Sui&amp;rsquo;s emerging privacy-and-data stack.&lt;/p&gt;&#xA;&lt;h2 id=&#34;the-problem&#34;&gt;The Problem&lt;a class=&#34;anchor&#34; href=&#34;#the-problem&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;On-chain state is expensive precisely because every validator stores and re-executes against it. Sui&amp;rsquo;s &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/sui/gas-and-storage&#34;&gt;storage fund&lt;/a&gt; is engineered for &lt;em&gt;small&lt;/em&gt; state — owned &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/sui/object-model&#34;&gt;objects&lt;/a&gt;, balances, contract data — and prices it accordingly: every validator keeps a full copy forever. Putting megabytes of media, datasets, NFT artwork, website front-ends, AI model weights, or data-availability blobs through that mechanism is economically absurd.&lt;/p&gt;</description>
    </item>
    <item>
      <title>DeFi on Sui</title>
      <link>https://wiki.bitsy.services/wiki/defi/sui/defi-ecosystem/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/defi/sui/defi-ecosystem/</guid>
      <description>&lt;p&gt;Sui&amp;rsquo;s DeFi ecosystem is young, fast-growing, and architecturally distinct from the EVM world. The &lt;a href=&#34;https://wiki.bitsy.services/wiki/defi/sui/object-model&#34;&gt;object model&lt;/a&gt; and parallel execution that define the chain are not just performance footnotes here — they enable a class of on-chain primitive, the native order book, that is impractical on a globally-locked chain like Ethereum. This page maps the landscape protocol-by-protocol, then turns to the honest part: how mature the ecosystem actually is, and what has gone wrong.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
