Skip to content

Examples: Announces a transaction

Eleazar Garrido edited this page Oct 5, 2018 · 17 revisions

Transactions are actions taken on the blockchain that change its state.

Once a transaction is initiated, it is still unconfirmed and thus not yet accepted by the network. At this point, it is not clear if it will get included in a block. Never rely on a transaction which has the state unconfirmed.

  • Transfer transaction is used to send assets between two accounts. It can hold a message of length 1024.
  • Register namespace transaction is used to create and re-rental a namespace or subnamespace.
  • Mosaic definition transaction is used to create a new mosaic.
  • Mosaic supply change transaction is used to assign supply to a mosaic.
  • Modify multisig account transaction is used to change properties of a multisig account.

Note: the connections to the server api are asynchronous and do not return the status of the transaction, to know the status you must use the websocket module of nem2-sdk-go.

Clone this wiki locally