Articles
Educational materials & tutorials about Move
Posts
3- ArticleCalories10Jul 31, 2025
Deploying a Private or Consortium Blockchain on Sui for Enterprise Networks
1. Introduction: Why Enterprises Need Private Blockchains In sectors like finance, healthcare, logistics, and government, data sensitivity and regulatory oversight require more control than public blockchains can offer. Enterprises often operate in environments where: • Data privacy is paramount • Network participants must be vetted • Legal compliance (e.g., GDPR, HIPAA) demands access control • Predictable performance and low latency are essential As a result, many are turning to private or consortium blockchains—networks where participation is restricted to known entities. While permissioned chains have existed for years (e.g., Hyperledger Fabric, Quorum), many fall short in scalability, developer usability, or native support for smart contract safety. Enter Sui, a high-performance, object-centric blockchain built for flexibility. ⸻ 2. What Makes Sui Suitable for Enterprise Use? Sui stands out as a prime platform for enterprise-grade blockchain deployment due to several features: • Move programming language for safe, verifiable smart contracts • Object-centric data model suited for asset tracking, complex workflows • Horizontal scalability through parallel execution and low-latency consensus • zkLogin support, enabling Web2-style authentication • Customizable validator sets for private or hybrid networks For enterprises needing fine-grained control and performance without sacrificing the benefits of on-chain programmability, Sui offers a future-proof foundation. ⸻ 3. Understanding Sui’s Private and Permissioned Deployment Modes Sui allows enterprises to deploy either: 🧱 A Fully Private Blockchain • All validator nodes are hosted and operated internally (or by selected partners). • No outside access; suitable for highly sensitive data or internal workflows. • Use cases: internal auditing, HR systems, document notarization, or compliance recordkeeping. 🤝 A Consortium Blockchain • Operated by a group of pre-approved institutions (e.g., banks, logistics companies). • Participants share governance, network responsibilities, and smart contract logic. • Use cases: cross-border payments, supply chain visibility, interbank reconciliation. Key features include: • Whitelisted validator nodes with identity and role management • Private RPC endpoints secured through firewall and access tokens • Custom transaction fees (or zero-fee mode) for internal usage • Audit-friendly logging with deterministic state tracking ⸻ 4. Architectural Considerations for Enterprises Deploying a secure, resilient enterprise Sui blockchain requires thought around: 🏗 Network Infrastructure • Nodes deployed on-premises or across cloud providers (e.g., AWS, Azure). • Prefer Kubernetes or Docker orchestration for fault tolerance and updates. • Utilize reverse proxies and load balancers for RPC and frontend services. 🔒 Security • Enforce strict firewall rules and VPN-only access for validators. • Role-based access for smart contract deployment and upgrades. • Key custody via HSMs (hardware security modules) or enterprise KMS. 🌐 APIs and Middleware • Integrate enterprise systems (ERPs, CRMs) through custom APIs or Oracle layers. • Build internal dashboards for asset tracking, approvals, and reporting. ⸻ 5. Use Case Spotlight: Pharmaceutical Supply Chain Consortium Problem: Pharmaceutical companies need to verify the authenticity and location of temperature-sensitive drugs across complex logistics networks. Solution on Sui: • Each shipment is a PharmaPackage Move object, with metadata for origin, batch, temperature log, and ownership. • As packages move from manufacturer → distributor → pharmacy, ownership is transferred on-chain. • IoT sensors push environmental data, which is appended to the object history via signed Oracle updates. Benefits: • Real-time transparency across the chain • Automated alerts if temperature thresholds are breached • Immutable history for compliance audits ⸻ 6. Deployment Steps and Governance Models To stand up a private or consortium Sui network: Validator Setup • Configure and run a small number of Sui full nodes with consensus mode. • Set genesis.blob with approved validator keys and configurations. Participant Onboarding • Each organization generates keys and is whitelisted for smart contract deployment. • Smart contracts (Move modules) deployed from a central or shared registry. Governance Framework • Use on-chain governance with multi-signature control objects. • Establish clear upgrade and emergency pause policies. • Optionally include regulatory observers with read-only or veto roles. ⸻ 7. Security and Compliance Implications Sui supports enterprise-grade security: • Immutable audit logs built into Move object history • Encryption at rest and in transit via TLS and secure cloud storage • KYC/AML enforcement through programmable identity modules • GDPR/CCPA support by abstracting personal data off-chain and storing only proofs Enterprises should design their dApps to: • Separate personally identifiable information (PII) • Implement fine-grained access controls via smart contracts • Support data retention policies enforced through tokenized permissions ⸻ 8. Challenges and Best Practices Common Challenges: • Misconfiguring validator nodes (e.g., opening public ports unintentionally) • Smart contract complexity without formal verification • Regulatory ambiguity around digital assets and on-chain governance Best Practices: • Start with a pilot focused on a narrow use case (e.g., document timestamping) • Engage a Move security audit firm before going live • Collaborate with internal IT & compliance from day one • Document governance and upgrade flows clearly for all participants ⸻ 9. Conclusion: When and Why to Choose Sui for Enterprise Networks Sui combines the strengths of public smart contract platforms with the flexibility needed by enterprises: • High throughput and fast finality • Powerful, secure, and auditable contract language (Move) • Support for both open and permissioned deployment modes • Strong identity, privacy, and automation tooling Whether you’re building an internal workflow automation tool or a cross-industry consortium, Sui offers the building blocks to create a secure, compliant, and future-ready solution.
- Move
- Move Module
0 - ArticleOct 31, 2023
Sui Sponsored Transactions - Basic Integrations Examples
Traditionally, users engaging with decentralized aplications (dApps) face a common hurdle: gas fees. These Sui gas fees in our case, required to execute transactions on the blockchain, often deter new users from fully embracing the potential of Web3. However, Sui innovative sponsored transaction feature eliminates this obstacle, empowering builders to cover the gas fees for their app transactions. This revolutionary functionality paves the way for a seamless user experience, encouraging broader adoption of decentralized applications. TheMoveDev GitHub; SuiQL GitHub Repository; If you have any questions, you can ask them here. Sponsored Transaction Workflow Sui's sponsored transaction workflow is a well-orchestrated process that ensures smooth and gas fee-free transactions for end-users. Here's a breakdown of the steps involved. User Initiates an Action The process kicks off when a user initializes a GasLessTransactionData transaction, indicating their intent to perform a specific action within a dApp. dApp Creates a Sui Transaction Block At the heart of the sponsored transaction workflow lies the dApp's ability to create a Transaction Block. This block encapsulates all the necessary data, including the user's intent, the action to be performed, and any associated parameters. Transmission of GasLessTransactionData The GasLessTransactionData is sent to the sponsor, a key participant in the sponsored transaction framework, with a signature request. This data serves as the foundation for the upcoming transaction. Validation and Transaction Data Construction The sponsor validates the received transaction and constructs TransactionData, incorporating the necessary gas fees. This step ensures that the transaction is properly funded for execution on the Sui blockchain. Transaction Signing The sponsor signs the TransactionData, indicating their approval and commitment to the transaction. The private key required for this signature is securely stored in AWS Secrets Manager, ensuring the utmost security. Verification and Dual Signing by the User The signed TransactionData, along with the sponsor's signature, is sent back to the user. The user verifies the transaction details and signs the TransactionData once more, creating a dual-signed transaction ready for execution. Transaction Execution on Sui The dual-signed transaction is submitted to the Sui network via a Sui node (full node) or the sponsor. Sui processes the transaction, executing the specified action within the dApp, all without requiring the user to pay any gas fees. User Notification Finally, the user is notified by a dApp that the transaction is sponsored and sent. Implementing Sui Sponsored Transactions: A Developer's Perspective To implement sponsored transactions, developers interact with the Sui API or Sponsored Transaction API, making use of the sui-sign-sponsored-transaction Lambda function. Here's a glimpse of the client-side code that facilitates this process: const response = await fetch('http://localhost:5000/blockchain/sui-sign-sponsored-transaction', { method: 'POST', headers: { Accept: 'application/json', 'Content-Type': 'application/json', }, body: JSON.stringify({ sender: wallet.address, module: libName, action, arguments: data, }), }); const sponsorSignedTransaction = await response.json(); const transactionBlock = TransactionBlock.from(sponsorSignedTransaction?.transactionBlockBytes); const senderSignedTransaction = await wallet.signTransactionBlock({ transactionBlock, }); const executeResponse = await provider.executeTransactionBlock({ transactionBlock: sponsorSignedTransaction?.transactionBlockBytes, signature: [sponsorSignedTransaction?.signatureBytes, senderSignedTransaction.signature], options: { showEffects: true }, requestType: 'WaitForLocalExecution', }); This client-side code acts as a bridge between the user, the sponsor, and the Sui blockchain, enabling the seamless execution of gas fee-free transactions. Conclusion Sui's sponsored transaction feature represents a paradigm shift in the world of decentralized applications, removing a significant barrier to entry for users. Through our exploration of this innovative functionality, we've gained valuable insights that have shaped our approach to building user-friendly dApps. Feel free to leave your questions here.
- Move
0 - ArticleOct 31, 2023
Sui Move Events Listeners and Webhooks - Basic Integrations Examples
For businesses and developers, integrating with chains like Sui offers a unique opportunity to innovate and create transformative solutions. In this series, we delve into our journey of building on Sui, shedding light on the intricacies of integrations, focusing on event listeners and webhooks, which have been integral components of TheMoveDev and SuiQL, Sui indexing GraphQL Event API made by Peeranha. TheMoveDev GitHub; SuiQL GitHub Repository; If you have any questions, you can ask them here. The code is implemented in TypeScript and runs within the AWS Cloud environment using serverless technologies. Serverless is used for deployments. Serverless Offline is used to run the code locally. Sui Events Listeners and Webhooks: A Brief Overview Blockchain networks are inherently decentralized, making real-time data integration a challenging feat. This is where event listeners and webhooks come into play. Event Listeners are mechanisms that constantly monitor blockchain activity, identifying and capturing specific events of interest. Webhooks, on the other hand, are HTTP callbacks triggered by these events, allowing seamless communication between different applications. The Sui Integration Architecture Our integration journey with Sui involved a comprehensive architecture comprising several key components. Events Listener The Events Listener, a robust ECS Fargate task, plays a pivotal role in our integration setup. It continuously polls new events from the Sui nodes (Sui full node), ensuring that our system stays up-to-date with the latest blockchain activities. Sui Events Listener Queue Events identified by the Events Listener are added to the Sui Listener Queue, a FIFO SQS queue. This queue acts as an intermediary storage, enabling efficient event processing and management. Webhook Invoker Responsible for invoking webhooks, the Webhook Invoker is a Lambda function that ensures seamless communication between our system and external applications. It acts as a bridge, facilitating the transmission of event data to the designated endpoints. Event Bridge The Event Bridge, a pivotal component of our architecture, invokes the Webhook Invoker Lambda whenever new items are added to the Sui Listener Queue. This real-time triggering mechanism ensures prompt webhook invocations. Webhook The Webhook, implemented as an AWS Lambda function, processes individual events received from the Sui blockchain. This component plays a crucial role in interpreting the event data and executing specific actions based on the event type. Workflow: How It All Comes Together Understanding the workflow is essential to grasp the seamless operation of our integration architecture. Events Listener Operation The Events Listener operates in a continuous loop, making RPC API calls to suix_queryEvents to retrieve new events associated with a configured package ID. The Events Listener maintains a cursor value in DynamoDB, ensuring it reads events chronologically. Adding Events to Sui Listener Queue Whenever the Events Listener identifies new events, it adds them to the Sui Listener Queue for further processing. Event Bridge Trigger The AWS Event Bridge monitors the Sui Listener Queue and triggers the Webhook Invoker Lambda as soon as new items are added. This ensures real-time event processing. Webhook Invocation The Webhook Invoker, once triggered, invokes the Webhook Lambda function for each event present in the queue. Running Locally - Dev Playground Serverless offline plugin is used to run the solution locally. Listener runs in ECS task in the cloud. ECS is not available for serverless offline. For that reason, uncomment the sui-events-listener lambda function in serverless.yml. This function will read new events from the blockchain once per minute. Install dependencies: npm install Install DynamoDb: npm run dynamodb:install If you are getting an error Error getting DynamoDb local latest tar.gz location undefined: 403 on this step then it means that there is still a known issue in serverless-dynamodb-local. It is discussed here or you can leave your question on Sui Move Q&A. In node_modules/dynamodb-localhost/dynamodb/config.json URL to https://s3.us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.tar.gz (add s to http); In node_modules/dynamodb-localhost/dynamodb/installer.j change http to https; To start services run: npm run dev Event Listener Deployment to AWS Install AWS CLI; Configure AWS CLI; aws configure Modify values in stages\test.yml and stages\prod.yml; Start deployment; npm run deploy:test or npm run deploy:prod To be continued... In this first part of our series on Sui integrations, we've explored the foundational concepts of event listeners and webhooks, unraveling the intricate architecture behind our integration with the Sui blockchain. Stay tuned for the upcoming parts, where we'll delve deeper into our journey, sharing insights, challenges, and innovative solutions that have shaped our experience. Feel free to leave your questions here.
- Move
1
- Move CLI
- Move
- Move Module
- Move Bug
- Smart Contract
- Move Script
- Move Prover
- Feature Request