Issue Asset Transaction

+1 vote

Hey, I've noticed that when retrieving transaction details for an issue asset transaction via the getRawTransaction & decodeRawTransaction, there are no details concerning the custom asset within the response.....see below for an example:

Is this what you would expect and if so, how do I work out the asset details related to this transaction?

{
  "result": {
    "txid": "d4e8c611d8a27cd56cb9b212467d7943901afe2b6ef50b1482d0e8600b7ca447",
    "version": 1,
    "locktime": 0,
    "vin": [
      {
        "coinbase": "510101062f503253482f",
        "sequence": 4294967295
      }
    ],
    "vout": [
      {
        "value": 0,
        "n": 0,
        "scriptPubKey": {
          "asm": "OP_DUP OP_HASH160 158ab6f0e67fb88a6dbdf67288a74abc0ed763d8 OP_EQUALVERIFY OP_CHECKSIG",
          "hex": "76a914158ab6f0e67fb88a6dbdf67288a74abc0ed763d888ac",
          "reqSigs": 1,
          "type": "pubkeyhash",
          "addresses": [
            "12xuN69XPot33DXU943EP7NNJA5XuUpAZz"
          ]
        },
        "assets": [],
        "permissions": []
      },
      {
        "value": 0,
        "n": 1,
        "scriptPubKey": {
          "asm": "OP_RETURN 53504b6246304402207af590f49fdf39c95bb307170e6f007c588db1b0d60b31cf4de548c4d5b328820220511954d95c9dd695ee6d9ca5e85055c4cedb0d20aaee032221da53032f5f8c0d022103a0bb553aab28ff6d1eda408d62c001ebccc5894c4ff7ece373f292ecd2893943",
          "hex": "6a4c6e53504b6246304402207af590f49fdf39c95bb307170e6f007c588db1b0d60b31cf4de548c4d5b328820220511954d95c9dd695ee6d9ca5e85055c4cedb0d20aaee032221da53032f5f8c0d022103a0bb553aab28ff6d1eda408d62c001ebccc5894c4ff7ece373f292ecd2893943",
          "type": "nulldata"
        },
        "assets": [],
        "permissions": []
      }
    ],
    "data": [
      "53504b6246304402207af590f49fdf39c95bb307170e6f007c588db1b0d60b31cf4de548c4d5b328820220511954d95c9dd695ee6d9ca5e85055c4cedb0d20aaee032221da53032f5f8c0d022103a0bb553aab28ff6d1eda408d62c001ebccc5894c4ff7ece373f292ecd2893943"
    ]
  }
}

Cheers

Marty

 

asked May 25, 2016 by marty

1 Answer

0 votes
If you use the latest version (alpha 21), you should see much more useful information in there regarding asset issuances.
answered May 26, 2016 by MultiChain
...