kinds:
Transaction: unsigned transaction.Message: an arbitrary message.
Transaction
| Field | Description | Type - Optional |
|---|---|---|
blockchainKind | Tron | String |
kind | Transaction | String |
transaction | The unsigned hex encoded transaction as shown below. | String |
Typescript Example with TronWeb
First install Tronweb. You can find the full documentation here: https://tronweb.network/docu/docs/intro/ Tron requires the transaction to be serialized using the protobuf format before it can be broadcast. As it’s not trivial, you can use the functions exposed in Tronweb to generate the transaction in the right format (see below) and then sign via the Dfns TypeScript SDK:Message
Signs an arbitrary hex encoded message.| Field | Description | Type - Optional |
|---|---|---|
blockchainKind | Tron | String |
kind | Message | String |
message | An arbitrary hex encoded message. | String |
