Transaction tracking
GET
https://subapi.nodemesh.cc/status/<license-id>
Get information about submitted transactions.
[
{
//transaction was just submitted
txid: "70a0882a73bb7ac6c1cd68e903ac02dd88d96207a4d0e4748acc668aa54194d1",
status: "SUBMITED"
},
{
//transction in one or multiple connected mempools
txid: "70a0882a73bb7ac6c1cd68e903ac02dd88d96207a4d0e4748acc668aa54194d2",
status: "IN_MEMPOOL"
},
{
//transaction is part of a block
txid: "70a0882a73bb7ac6c1cd68e903ac02dd88d96207a4d0e4748acc668aa54194d2",
status: "IN_BLOCK",
block: 10227162
},
{
//transaction is part of a block that has at least 15 confirmations
txid: "70a0882a73bb7ac6c1cd68e903ac02dd88d96207a4d0e4748acc668aa54194d2",
status: "IN_CONFIRMED_BLOCK",
block: 10227162
},
{
//transaction could not be submitted
txid: "70a0882a73bb7ac6c1cd68e903ac02dd88d96207a4d0e4748acc668aa54194d2",
status: "FATAL_SUBMIT"
msg: "transaction submit error ShelleyTxValidationError ShelleyBase..." //submission error
},
{
//submitted transaction was invalidated (for example by a consumed utxo)
//and could not be resubmitted
txid: "70a0882a73bb7ac6c1cd68e903ac02dd88d96207a4d0e4748acc668aa54194d2",
status: "FATAL_INVALIDATED"
},
{
//transaction id could not be generated
txid: "err1523523125",
status: "FATAL_TXIDERR"
},
{
txid: "70a0882a73bb7ac6c1cd68e903ac02dd88d96207a4d0e4748acc668aa54194d2",
status: "LOST_REORG",
block: 10227162 //block height when transaction was lost in reorg
},
{
//transaction left mempools (waiting for LOST_REORG or IN_BLOCK)
txid: "70a0882a73bb7ac6c1cd68e903ac02dd88d96207a4d0e4748acc668aa54194d2",
status: "LEFT_MEMPOOL"
},
{
//transaction left mempools but it was also submitted to 3rd party nodes
txid: "70a0882a73bb7ac6c1cd68e903ac02dd88d96207a4d0e4748acc668aa54194d2",
status: "WAITING_FOR_PROPAGATION"
},
]
Last updated