tx · 3o2kJDMQ9B2zMQDdfAKLfaXhPCPdMrBiHGz1NSPjmN6n
3MwbitonfX3Lv6wupDnNeD2nrWPSDVwo4FK: -0.01400000 Waves
2019.10.31 14:26 [744288] smart account 3MwbitonfX3Lv6wupDnNeD2nrWPSDVwo4FK > SELF 0.00000000 Waves
{
"type": 13,
"id": "3o2kJDMQ9B2zMQDdfAKLfaXhPCPdMrBiHGz1NSPjmN6n",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1572521260252,
"version": 1,
"sender": "3MwbitonfX3Lv6wupDnNeD2nrWPSDVwo4FK",
"senderPublicKey": "YMs97npj9YUycnjfvQVTtyVST2h1jhwncPHDr32tQnJ",
"proofs": [
"",
"3hGhsc9owsSSxxBksXRUQ8AEtrR54k3KWds1yuShwtnxHYmUss9SqV8Wck9pzADP5nd8fi42xsEHwHLJihPsfbkr",
"3hYYA9kpbRfReBzcRUrhLEKrdiXJjoeVFUiLyg3WFsuVyTd67QUmBHeea3ZA95HvCMwZrVGyKsytXMBLqYbo3pN1"
],
"script": null,
"chainId": 84,
"height": 744288,
"spentComplexity": 0
}
View: original | compacted
Prev: 7vLVEs62pveD8oa5PRQzoxKiUA9p9infZ3rfFhrNZ6uL
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 |
---|