I am playing around with hyperledger-sawtooth. I have installed the sawtooth in ubuntu machine but identity transaction processor is not installed with sawtooth. so how can i use identity-tp command
Asked
Active
Viewed 557 times
3

Anshuman Singh
- 1,134
- 1
- 13
- 21
2 Answers
2
go into the sawtooth-core/bin folder where all the deafualt TPs will be there. You will find build_xxx_identity-tp. Start your validator, settings TP and run above shell script file from bin. You will see log in your validator, that identity-tp is registered.

Frank C.
- 7,758
- 4
- 35
- 45

Sandip Nirmal
- 415
- 4
- 7
-
From a docker install, do you need to run this from inside the validator, shell or setting container or can it be run from the host machine? – Frank C. Mar 20 '18 at 22:35
2
- Install package
python3-sawtooth-identity
- To start a TP, including the Identity TP, just type it on the command line. For example,
/usr/bin/identity-tp -v -C tcp://localhost:4004
For Docker, you normally run the Identity TP in its own container, just like other transaction processors.
For more info, see https://sawtooth.hyperledger.org/docs/core/releases/latest/cli/identity-tp.html
Edit: as requested, here's the Identity Transaction Processor Specification: https://sawtooth.hyperledger.org/docs/core/nightly/master/transaction_family_specifications/identity_transaction_family.html

Dan Anderson
- 2,265
- 1
- 9
- 20
-
Please let us know if there is a detailed documentation available for identity-tp. – GraphicalDot Aug 30 '18 at 20:43