Sawtooth simplifies the development of applications by separating the core system from the application domain. Application developers only need to focus on implementing their business logic for the enterprise using the transaction processor, with the language of their choice, without needing to know the underlying details of the Sawtooth core system.
Building a transaction processor
Getting ready
In this recipe, we will go through a step-by-step guide to implement a transaction processor, a smart contract, in our example transaction family using the Sawtooth Python SDK.
Python Sawtooth SDK: The Python SDK is installed automatically when you install Hyperledger Sawtooth on AWS. You can import the SDK in Python to verify Python...