Move.

Startseite

Willkommen im Move Community Forum

Neue Artikel

  • article banner.
    Peera Admin.
    Oct 31, 2023
    Artikel
    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.

    0
  • article banner.
    Peera Admin.
    Oct 31, 2023
    Artikel
    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.

    1

Beiträge

148
  • Forever_A-gator.
    Apr 11, 2025
    Experten Q&A

    Wie generiere ich lesbaren Bytecode für Move with Miden Assembly?

    Ich versuche mit dem Schreiben eines Move-Compilers zu experimentieren, indem ich Miden Assembly als Compiler-Ziel verwende. Ich möchte lesbaren Bytecode für das kompilierte Move-Programm generieren. Gibt es einen einfachen Weg, dies zu erreichen?

    • Move CLI
    0
    1
  • elfDani.
    Apr 11, 2025
    Experten Q&A

    Können Module nahtlos mehrere Coins auf der Kette generieren?

    Ich arbeite an einem Modul für Prognosemärkte und benötige es, um während einer Factory-Klasse auf erlaubnisfreie und überprüfbare Weise Coins in der Kette zu generieren. Derzeit gibt es für Module aufgrund von One Time Witness Einschränkungen, wie z. B. nur eine Münze pro Modul. Das bedeutet, dass ich einen entsprechenden Münzstandard erstellen musste, den die Wallets der Nutzer nicht als Münze erkennen. Können wir das im nächsten Update lösen?

    • Move CLI
    • Move Module
    0
    1
  • skywinder.
    Apr 10, 2025
    Experten Q&A

    Was ist eine native Funktion und können wir sie direkt aufrufen?

    Ich bin in Move auf den Begriff „native Funktion“ gestoßen, kann aber keine detaillierten Informationen dazu finden. Ich habe gehört, dass sie in Move deklariert, aber extern definiert sind, oft in Rust. Bedeutet das, dass es sich um interne Funktionen handelt, die nicht direkt von Wallets oder anderen Modulen aufgerufen werden können?

    • Move CLI
    • Move
    0
    1
  • kryptoschain.
    Apr 10, 2025
    Experten Q&A

    Wie übertrage ich ein Objekt, das einem anderen Objekt gehört?

    Ich habe ein Problem mit der Übertragung eines Objekts A, das Objekt B gehört, und Objekt B gehört mir. Ich erhalte eine Fehlermeldung, die besagt, dass die Transaktion nicht vom richtigen Absender signiert wurde. Weiß jemand, wie man das löst und Objekt A richtig empfängt?

    • Move CLI
    • Move
    0
    1
  • Pluto Dev👽.
    Apr 10, 2025
    Experten Q&A

    Umwandlung eines öffentlichen Schlüssels in eine Sui-Adresse in Sui Move

    Ich versuche, einen öffentlichen Schlüssel mit Sui Move in eine Sui-Adresse umzuwandeln, kann aber keine eingebaute Funktion finden. Ich verstehe, dass es für meine Arbeit sehr wichtig ist. Könnte jemand erklären, wie genau diese Konvertierung durchgeführt wird?

    • Move CLI
    0
    1
  • 1 Luca.
    Apr 10, 2025
    Diskussion

    Unterstützt Sui die Selbstzerstörung von Verträgen?

    Ich habe mich gefragt, ob es innerhalb des Sui-Frameworks eine Möglichkeit gibt, einen intelligenten Vertrag zu zerstören oder sich selbst zu zerstören. Ich habe etwas über einen Selbstzerstörungsmechanismus gehört und wollte wissen, ob er in Sui existiert. Und was würde passieren, wenn ein Vertrag auf diese Weise gekündigt wird?

    • Move
    • Smart Contract
    0
    1
  • yhant3.
    Apr 07, 2025
    Experten Q&A

    Wie kann sichergestellt werden, dass nur NFT-Besitzer es in einem Vertrag übertragen können?

    Hallo zusammen! Ich arbeite an der Umsetzung eines NFT-Vertrags und möchte sicherstellen, dass nur der rechtmäßige Eigentümer des NFT ihn übertragen kann. Ich habe diese Funktion zum Übertragen von: public fun transfer( nft: DevNetNFT, recipient: address, _: &mut TxContext ) { transfer::public_transfer(nft, recipient) } Wird diese Überprüfung innerhalb der public_transferMethode durchgeführt, oder muss ich zusätzliche Logik hinzufügen?

    • Move CLI
    0
    3
  • Britain.
    Apr 07, 2025
    Experten Q&A

    Wie rufe ich Werte aus ObjectTable mit dynamischen Feldern ab?

    dynamicFieldObjectIch versuche, Werte aus einer ObjectTable mithilfe dynamischer Felder vom Frontend abzurufen, aber ich stoße auf einen Fehler mit. Unexpected arg String("gms") for the expected type Struct(MoveStructLayout...)Der Fehler sagt. Wie kann ich den richtigen Typ für den Wert ermitteln und diesen Fehler vermeiden?

    • Move CLI
    • Move
    0
    3
  • Raju.
    Raju158
    Apr 06, 2025
    Experten Q&A

    Wie teste ich eine Funktion mit einem Empfangsparameter in Sui?

    Ich versuche, die receive_objectFunktion mit einem ReceivingParameter in Sui zu testen, basierend auf den Dokumenten unter diesem Link. Anfangs habe ich einen Test anhand des Beispiels erstellt, aber ich habe Probleme damit, das gesendete Argument in einen ReceivingTyp umzurechnen. Ich habe auch versucht, den Empfangstyp zu bezeichnen, bin aber auf Fehler gestoßen. Könnte mir jemand helfen, diese Funktion richtig zu testen?

    • Move CLI
    • Move
    0
    4
  • Santorini.
    Apr 06, 2025
    Experten Q&A

    Wie kann ich einen Vektor kopieren<u64>, um ihn mehrfach zu verwenden?

    Ich versuche, einen Vektor in eine lokale Variable zu kopieren, weil ich für mein Projekt zwei Instanzen desselben Vektors benötige. Ich habe einige Methoden gesehen, bin mir aber nicht ganz sicher, wie ich sie richtig implementieren soll. Kann mir jemand die besten Praktiken oder Methoden zeigen, um dies in der Programmiersprache Move zu erreichen?

    • Move CLI
    • Move
    0
    4

Move is an executable bytecode language used to implement custom transactions and smart contracts.

148Beiträge231Antworten
Sui.X.Peera.

Verdiene deinen Anteil an 1000 Sui

Sammle Reputationspunkte und erhalte Belohnungen für deine Hilfe beim Wachstum der Sui-Community.

Top-Tags
  • Move CLI
  • Move
  • Move Module
  • Move Bug
  • Smart Contract
  • Move Script
  • Move Prover
  • Feature Request
Wir verwenden Cookies, um sicherzustellen, dass Sie die beste Erfahrung auf unserer Website haben.
Mehr Infos