Post data to Mitum network

MitumJS allows you to post data to the Mitum network, enabling you to create and send transactions, contracts, or any other data onto the blockchain.

This process involves sending the data to a Mitum node, which then validates and includes it in a new block on the blockchain.

Writing data to the Mitum blockchain involves paying a fixed fee. This works by transmitting “operations” (transaction in Mitum network).

This sending process occurs asynchronously through HTTP POST requests and can either succeed or fail.

Keep in mind that a successful transmission does not necessarily mean that the operation has been processed.

Therefore, it is necessary to verify whether the transaction has been successfully processed by querying it from the block.

As the Mitum blockchain's consensus is based on PBFT, the outcome of successful processing does not change.

MitumJS provides a method called wait for sending operations and polling until they are recorded on the blockchain. This allows you to verify whether the operation has ultimately succeeded.

Last updated