0

I want to perform CRUD operations in Hyperledger Sawtooth.

Can I perform CRUD operations in Hyperledger Sawtooth?

Rushabh Sudame
  • 414
  • 1
  • 6
  • 22
  • 1
    If you are referring to the block chain data, then yes. You would use transaction processor(s) for CUD and REST-API and/or client app for R. – Frank C. Nov 30 '18 at 08:26

1 Answers1

3

You can perform CRUD but this will be a bit different from just CRUD operations, you can only create and update or delete with the help of the transaction processor, but if you want to have a local database setup for you, then you can go to ledger_sync sawtooth with this you can sync your blockchain ledger with your local database your choice, repository mentioned here is using rethinkDB but you can configure it for SQL or mongodb or any database of your choice

silverhead
  • 46
  • 1