action nebl_testnet_get_transaction_info { label: "Information On an NTP1 Transaction" description: "Returns detailed information regarding an NTP1 transaction.\n" provider: nebl method: GET path: "/testnet/ntp1/transactioninfo/{txid}" encoding: json input: { type: "object" properties: { txid: { type: "string" } } required: ["txid"] additionalProperties: false } output: { type: "object" properties: { blockhash: { type: "string" description: "Hash of the block this transaction is in" } blockheight: { type: "number" description: "Block height of this transaction" } blocktime: { type: "number" description: "Block time of this transaction" } confirmations: { type: "number" description: "Number of transaction confirmations" } fee: { type: "number" description: "Total NEBL used as fee for this transcation in satoshis" } hex: { type: "string" description: "Transaction in raw hex" } locktime: { type: "number" description: "Transaction locktime" } time: { type: "number" description: "Transaction time" } totalsent: { type: "number" description: "Total NEBL sent in this transaction in satoshis" } txid: { type: "string" description: "TXID of transaction" } version: { type: "number" description: "Transaction version" } vin: { type: "array" description: "Array of transaction inputs" items: { type: "object" properties: { previousOutput: { type: "object" properties: { addresses: { type: "array" items: { type: "string" } } asm: { type: "string" } hex: { type: "string" } reqSigs: { type: "number" } type: { type: "string" } } } scriptSig: { type: "object" properties: { asm: { type: "string" } hex: { type: "string" } } } sequence: { type: "number" } tokens: { type: "array" items: { type: "object" properties: { aggregationPolicy: { type: "string" description: "Whether the tokens are aggregatable" } amount: { type: "number" description: "Number of tokens" } divisibility: { type: "number" description: "Decimal places the token is divisible to" } issueTxid: { type: "string" description: "TXID the token was issued in" } lockStatus: { type: "boolean" description: "Whether issuance of more tokens is locked" } tokenId: { type: "string" description: "ID of the token" } } } } txid: { type: "string" description: "TXID of the input" } value: { type: "number" description: "Value of input in NEBL satoshi" } vout: { type: "number" description: "output index" } } } } vout: { type: "array" description: "Array of transaction outputs" items: { type: "object" properties: { blockheight: { type: "number" description: "Blockheight of this transaction" } n: { type: "number" description: "Output index" } scriptPubKey: { type: "object" properties: { addresses: { type: "array" items: { type: "string" } } asm: { type: "string" } hex: { type: "string" } reqSigs: { type: "number" } type: { type: "string" } } } tokens: { type: "array" items: { type: "object" properties: { aggregationPolicy: { type: "string" description: "Whether the tokens are aggregatable" } amount: { type: "number" description: "Number of tokens" } divisibility: { type: "number" description: "Decimal places the token is divisible to" } issueTxid: { type: "string" description: "TXID the token was issued in" } lockStatus: { type: "boolean" description: "Whether issuance of more tokens is locked" } tokenId: { type: "string" description: "ID of the token" } } } } used: { type: "boolean" description: "Whether this output has now been used" } usedBlockheight: { type: "number" description: "Blockheight this output was used in" } usedTxid: { type: "string" description: "TXID this output was used in" } value: { type: "number" description: "Value of the output in NEBL satoshi" } } } } } } }