hyperledger-archives / sawtooth-sdk-go

https://wiki.hyperledger.org/display/sawtooth
Apache License 2.0
28 stars 40 forks source link

Is intkey-go code done? #16

Closed Kaixinguoer210 closed 5 years ago

Kaixinguoer210 commented 5 years ago

I have understood intkey-python code in sawtooth-core project. After that, I glance over intkey-go code in this project and I don't know where I can find those code which is used to encapsulate transaction and batcher.

arsulegai commented 5 years ago

[Edit] Go implementation of intkey client is available in examples/intkey_go/src/sawtooth_intkey_client

[Original answer] @Kaixinguoer210 that'll be a client application in go language.

There were many requests for writing a client application using sawtooth go sdk, I am working on merging this code. For time being you may find working code for intkey-go in my repository https://github.com/arsulegai/sawtooth-sdk-go/tree/intkey_go_client/examples/intkey_go/src/sawtooth_intkey_client also there's a PR raised on sawtooth-core repository for documenting how to build a client in go.

Kaixinguoer210 commented 5 years ago

@arsulegai Thank you very much. I will check it again.