tx · 94iWD4V66vVJ2jjtDTSmgwqAHEzyoRCxSzNmzQyEzD7A 3N9Sgptqbbc9whta6iLeeQENfHd833G9hQE: -1.00000000 Waves 2019.07.04 10:33 [570376] smart account 3N9Sgptqbbc9whta6iLeeQENfHd833G9hQE > SELF 0.00000000 Waves
{ "type": 13, "id": "94iWD4V66vVJ2jjtDTSmgwqAHEzyoRCxSzNmzQyEzD7A", "fee": 100000000, "feeAssetId": null, "timestamp": 1562225607119, "version": 1, "sender": "3N9Sgptqbbc9whta6iLeeQENfHd833G9hQE", "senderPublicKey": "5gUuv1jjtePpX8rffb1RvQ6FvX2oJ2rNshfF9Dt2NUES", "proofs": [ "24cPBtsErSctfzucXrr8gnmvNYrYTpVLyN1irPB1UAb6qjR5u3hQuUpnmWmgjTrPavhAo3z9yU7ivVMFv2Z43vbT" ], "script": null, "chainId": 84, "height": 570376, "spentComplexity": 0 } View: original | compacted Prev: AQcZvP7BLAXgk4J6RdEQxUo2RwNFanyCWMbupAAnJcq9 Next: 5GV8W248ZHNPgNfYqpErkWzu5fjf8wae1btV4s7X4EaG Full:
Old | New | Differences | |
---|---|---|---|
1 | - | {-# STDLIB_VERSION 2 #-} | |
2 | - | {-# CONTENT_TYPE EXPRESSION #-} | |
3 | - | let ownerPublicKey = base58'5gUuv1jjtePpX8rffb1RvQ6FvX2oJ2rNshfF9Dt2NUES' | |
4 | - | let operator1PublicKey = base58'5rwiwcENa9JEdLVHJbBFGPrMybk74HwnGq32d2cMPLt5' | |
5 | - | match tx { | |
6 | - | case d: DataTransaction => | |
7 | - | let signedByOwner = sigVerify(tx.bodyBytes, tx.proofs[0], ownerPublicKey) | |
8 | - | let signedByOperator = sigVerify(tx.bodyBytes, tx.proofs[0], operator1PublicKey) | |
9 | - | extract(if (signedByOwner) | |
10 | - | then true | |
11 | - | else signedByOperator) | |
12 | - | case e: ExchangeTransaction => | |
13 | - | if (sigVerify(e.buyOrder.bodyBytes, e.buyOrder.proofs[0], ownerPublicKey)) | |
14 | - | then true | |
15 | - | else sigVerify(e.sellOrder.bodyBytes, e.sellOrder.proofs[0], ownerPublicKey) | |
16 | - | case _ => | |
17 | - | sigVerify(tx.bodyBytes, tx.proofs[0], ownerPublicKey) | |
18 | - | } | |
1 | + | # no script |
github/deemru/w8io/169f3d6 27.91 ms ◑