tx · 3cnYtdjSbFnrJcuL6hB5vAaCY7yCqyoK5XiBeu216kWS
3N3Cn2pYtqzj7N9pviSesNe8KG9Cmb718Y1: -0.02055872 Waves
2018.10.03 11:21 [358964] smart account 3N3Cn2pYtqzj7N9pviSesNe8KG9Cmb718Y1 > SELF 0.00000000 Waves
{
"type": 13,
"id": "3cnYtdjSbFnrJcuL6hB5vAaCY7yCqyoK5XiBeu216kWS",
"fee": 2055872,
"feeAssetId": null,
"timestamp": 1538554881654,
"version": 1,
"sender": "3N3Cn2pYtqzj7N9pviSesNe8KG9Cmb718Y1",
"senderPublicKey": "DT5bC1S6XfpH7s4hcQQkLj897xnnXQPNgYbohX7zZKcr",
"proofs": [
"29ukZnK3pTaJFJnJAZn67GWsYW2cN2ZxRMEpCpgXbZFWr126GFYa8FLQ7dw6JKwG4jJXfbbcymFbW6hJyTgfWXcL",
"4vxk2j1QdNthA3gw4CwPEcHD3GGHozWd5Kk9pNzpKn7PQbEiazYPaNQVGB1d5vviAwVgPhzGTw2CkTRUYgDuj4v8"
],
"script": null,
"chainId": 84,
"height": 358964,
"spentComplexity": 0
}
View: original | compacted
Prev: H9f23kiAEX1pej7JaVGEcjSm2kmzQX4X1G2eiRSRxzs4
Next: CU2eb6m3iyiNhWrLPLdzTYXM2gdzATmBfiye9YTF34ZB
Full:
Old | New | | Differences |
---|
1 | | - | {-# STDLIB_VERSION 1 #-} |
---|
2 | | - | {-# CONTENT_TYPE EXPRESSION #-} |
---|
3 | | - | let alicePubKey = base58'5AzfA9UfpWVYiwFwvdr77k6LWupSTGLb14b24oVdEpMM' |
---|
4 | | - | let bobPubKey = base58'2KwU4vzdgPmKyf7q354H9kSyX9NZjNiq4qbnH2wi2VDF' |
---|
5 | | - | let cooperPubKey = base58'GbrUeGaBfmyFJjSQb9Z8uTCej5GzjXfRDVGJGrmgt5cD' |
---|
6 | | - | let aliceSigned = if (sigVerify(tx.bodyBytes, tx.proofs[0], alicePubKey)) |
---|
7 | | - | then 1 |
---|
8 | | - | else 0 |
---|
9 | | - | let bobSigned = if (sigVerify(tx.bodyBytes, tx.proofs[1], bobPubKey)) |
---|
10 | | - | then 1 |
---|
11 | | - | else 0 |
---|
12 | | - | let cooperSigned = if (sigVerify(tx.bodyBytes, tx.proofs[2], cooperPubKey)) |
---|
13 | | - | then 1 |
---|
14 | | - | else 0 |
---|
15 | | - | (((aliceSigned + bobSigned) + cooperSigned) >= 2) |
---|
| 1 | + | # no script |
---|