Sui Move
Object-based smart contracts on Sui Move for tokens, NFTs, GameFi, marketplace and DeFi with parallel execution of independent transactions.
- Move
- Resource-oriented on-chain development language
- Objects
- Explicit model for ownership and management of digital assets
- PTB
- Programmable Transaction Blocks for atomic composition of actions
Are you facing these issues?
Object ownership errors and uncontrolled shared state
Choosing the wrong owned or shared object complicates access, creates transaction contention, and opens the door to bypassing business restrictions.
We model rights through ownership and capability objects, minimize shared state and check object transitions using formal Move invariants.
Insecure composition of marketplace and DeFi operations
Inconsistent type and capabilities checks allow an object or asset to be used in a context other than the one for which it was created.
We limit generic types and abilities, build atomic PTB scripts and test erroneous combinations of objects before publishing the package.