<?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 Wiki</title>
    <link>https://wiki.bitsy.services/wiki/economics/finance/defi/sui/</link>
    <description>Recent content in Sui on Bitsy Wiki</description>
    <generator>Hugo</generator>
    <language>en</language>
    <atom:link href="https://wiki.bitsy.services/wiki/economics/finance/defi/sui/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>The Object Model</title>
      <link>https://wiki.bitsy.services/wiki/economics/finance/defi/sui/object-model/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/economics/finance/defi/sui/object-model/</guid>
      <description>&lt;p&gt;Sui has no accounts holding balances in the &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/defi/ethereum/&#34;&gt;Ethereum&lt;/a&gt; sense. Everything on-chain — coins, &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/defi/nft&#34;&gt;NFTs&lt;/a&gt;, &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/defi/amm&#34;&gt;AMM&lt;/a&gt; pools, published &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/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.&lt;/p&gt;&#xA;&lt;h2 id=&#34;objects-vs-the-account-model&#34;&gt;Objects vs. the Account Model&lt;a class=&#34;anchor&#34; href=&#34;#objects-vs-the-account-model&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;On Ethereum, a contract owns a slice of a single global storage trie. An &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/defi/ethereum/erc-20&#34;&gt;ERC-20&lt;/a&gt; balance is an entry in a mapping inside the token contract&amp;rsquo;s storage; the tokens are a number the contract attributes to an address. Reading or writing that mapping touches shared contract state, so the protocol cannot know in advance whether two transactions will collide — it must execute them one after another to be safe.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Sui Move</title>
      <link>https://wiki.bitsy.services/wiki/economics/finance/defi/sui/sui-move/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/economics/finance/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/economics/finance/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/economics/finance/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/economics/finance/defi/sui/programmable-transaction-blocks/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/economics/finance/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/economics/finance/defi/sui/sui-move&#34;&gt;Move&lt;/a&gt; calls, &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/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/economics/finance/defi/sui/consensus/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/economics/finance/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. Most transactions do not need a global order at all. Whether a transaction needs consensus depends entirely on the &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/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/economics/finance/defi/sui/gas-and-storage/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/economics/finance/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. &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/defi/ethereum/&#34;&gt;Ethereum&lt;/a&gt; bundles both into one volatile per-unit price set by an auction. Sui separates them because running a computation once and storing its output forever are different economic problems: one cost lands on the validators processing the transaction, the other on whoever is running the network years later.&lt;/p&gt;</description>
    </item>
    <item>
      <title>zkLogin</title>
      <link>https://wiki.bitsy.services/wiki/economics/finance/defi/sui/zklogin/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/economics/finance/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/economics/finance/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/economics/finance/defi/sui/walrus/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/economics/finance/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/economics/finance/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/economics/finance/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/economics/finance/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/economics/finance/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, &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/defi/nft&#34;&gt;NFT&lt;/a&gt; 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/economics/finance/defi/sui/defi-ecosystem/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://wiki.bitsy.services/wiki/economics/finance/defi/sui/defi-ecosystem/</guid>
      <description>&lt;p&gt;Sui&amp;rsquo;s DeFi ecosystem is young, fast-growing, and architecturally distinct from the &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/defi/ethereum#the-ethereum-virtual-machine-evm&#34;&gt;EVM&lt;/a&gt; world. The &lt;a href=&#34;https://wiki.bitsy.services/wiki/economics/finance/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.&lt;/p&gt;&#xA;&lt;h2 id=&#34;deepbook--the-native-order-book&#34;&gt;DeepBook — the native order book&lt;a class=&#34;anchor&#34; href=&#34;#deepbook--the-native-order-book&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;The flagship Sui DeFi primitive is &lt;strong&gt;DeepBook&lt;/strong&gt; (now &lt;strong&gt;DeepBook v3&lt;/strong&gt;), a fully on-chain &lt;strong&gt;central limit order book&lt;/strong&gt; (CLOB) maintained by Mysten Labs. Rather than another application competing for users, DeepBook is positioned as a public good: a shared-liquidity layer that other protocols route through. Aggregators, AMMs, and wallets can all source liquidity from the same order book, so depth is pooled rather than fragmented across a dozen siloed pools.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
