Skip to main content

Agent & Instrument Diagram: Sui RWA Flow

This translates the physical world (investor identity and fiat money) into cryptoeconomic bounds (Sui capability enforcement).

ElementDescriptionFlow Purpose
Agent: KYC ProviderSumSub checking passport & wholesale forms.Yields a boolean is_verified.
Agent: Issuer AdminSyndicator managing the portal.Approves/rejects edge-case investors.
Instrument: Platform BFFNode/Next API layer.Translates Webhook from KYC provider into a command.
Instrument: Sui ObjectsIssued investor capability tokens.Enforces compliance at the compiler level.
Feedback Loop: TransferEVM requires runtime checks.Sui inherently blocks transfers from wallets lacking the WholesaleInvestorCap object.

The Control Loop Setup:

  1. User provides docs → KYC Agent approves → Webhook fires.
  2. Platform Instrument catches Webhook → Calls Sui RPC.
  3. Sui mints WholesaleInvestorCap → Sent to User's zkLogin address.
  4. User initiates buy execution. Sui Network (Instrument) structurally enforces that only owners of the Capability can hold the RealEstateShare Coin.

Questions

Which agent in the sui real estate tokenization diagram has the highest authority-to-accountability ratio — and is that appropriate?

  • Where does human judgment remain essential in this agent-instrument flow, and where is automation safe?
  • If one instrument in this diagram reported bad data, which agents would be most affected and how quickly?
  • What would need to be true for a new agent type to be added to this diagram without breaking existing flows?