How to manually decode metadata? [closed]

0 votes
Begin with creating a raw transaction, decode the transaction output, followed by decoding scriptpubkey as follows:

1. Create a raw transaction
   createtransaction "411308c2641b2ce11804084697160c8aaae8d81bc2f8e880ec54b84292bd133a" 1 '{"asset1":1}'

2. Get raw transaction output
01000000013a13bd9242b854ec80e8f8c21bd8e8aa8a0c169746080418e12c1b64c20813410100000000ffffffff0100000000000000003776a914e81b3344e96227718756af533c172d8bc83258a888ac1c73706b71ed053a90f4a099acfc2b0c217dd2c05401000000000000007500000000

3. Decode transaction

01000000    => version
01 => txin count
3a13bd9242b854ec80e8f8c21bd8e8aa8a0c169746080418e12c1b64c2081341  => prev txid
01000000 => prev vout
00 => scriptsig length
ffffffff => sequence
01 => txout count
0000000000000000 => amount
37 => scriptpubkey length
76a914e81b3344e96227718756af533c172d8bc83258a888ac1c73706b71ed053a90f4a099acfc2b0c217dd2c054010000000000000075 => scriptpubkey
00000000 => locktime

4. Decode scriptpubkey
76a914e81b3344e96227718756af533c172d8bc83258a888ac1c73706b71ed053a90f4a099acfc2b0c217dd2c054010000000000000075 => scriptpubkey

76 => OP_DUP
a9 => OP_HASH160
14 => PUSHDATA
e81b3344e96227718756af533c172d8bc83258a8 => pubkey hash
88 => OP_EQUALVERIFY
ac => OP_CHECKSIG
1c => PUSHDATA
73706b7113576ef5fcafca4cfa046f012659f23b0100000000000000 => ???
75 => OP_DROP

My question is where can I refer to information on how to decode the metadata string in scriptpubkey 73706b7113576ef5fcafca4cfa046f012659f23b0100000000000000 => ???
closed with the note: Solved.
asked Mar 25, 2017 by kakkoiiman
closed Mar 25, 2017 by kakkoiiman
...