tx · 6hQVmmxYeFWENMZQhhefGEWnEkUu1492XaVwYcMnp3Ba
3N3Cn2pYtqzj7N9pviSesNe8KG9Cmb718Y1: -0.02055872 Waves
2018.10.03 13:50 [359109] smart account 3N3Cn2pYtqzj7N9pviSesNe8KG9Cmb718Y1 > SELF 0.00000000 Waves
{
"type": 13,
"id": "6hQVmmxYeFWENMZQhhefGEWnEkUu1492XaVwYcMnp3Ba",
"fee": 2055872,
"feeAssetId": null,
"timestamp": 1538563851620,
"version": 1,
"sender": "3N3Cn2pYtqzj7N9pviSesNe8KG9Cmb718Y1",
"senderPublicKey": "DT5bC1S6XfpH7s4hcQQkLj897xnnXQPNgYbohX7zZKcr",
"proofs": [
"4L8nufEnveKayrCRrsQCbHZGrJouvWTqAtULYas76JfkSXKn938Dt7ouiAMPH9oH6vq2rMxSjAQHiQzbyzFZnBW7",
"2sJjdZ3DUjPrTyTp5ndMtfunFQAvUjPr8AhGm1BCe6eyzqUb65iJHy1zRxeeQAd5PshQqavADUc9rv7QMx7jCBk9"
],
"script": null,
"chainId": 84,
"height": 359109,
"spentComplexity": 0
}
View: original | compacted
Prev: CU2eb6m3iyiNhWrLPLdzTYXM2gdzATmBfiye9YTF34ZB
Next: none
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 |
---|