tx · 3dK69ci11gkavLpWWHw4eTCKKiWFEKg2UYTuK7kGgFGi
3NDDYjZgVegNuxPpsxevnC3HAhfBu7NA5JN: -0.00900000 Waves
2022.06.29 18:16 [2117893] smart account 3NDDYjZgVegNuxPpsxevnC3HAhfBu7NA5JN > SELF 0.00000000 Waves
{
"type": 13,
"id": "3dK69ci11gkavLpWWHw4eTCKKiWFEKg2UYTuK7kGgFGi",
"fee": 900000,
"feeAssetId": null,
"timestamp": 1656515807751,
"version": 2,
"chainId": 84,
"sender": "3NDDYjZgVegNuxPpsxevnC3HAhfBu7NA5JN",
"senderPublicKey": "EEREQzh6Y52Q6kRCNYiiL1rYBp4p6v9CqXC3rdrwwHpr",
"proofs": [
"",
"33wXgwr1shs6gsZ5UaBFjaGdWzWz2enuUNo82vpuTM9HKAGzzVvoH9neaffcuqCNmexYUDnBKRFA1syyXSdmyT5u",
"3LarSh8g9VD1Jhxa2uUMvzkEH7xw8fVFjnFaNMaFrr8AWQRKVP7v6MG8ovvoNUb4SXRXqGJaPTYb7oRG1sDtsBYT"
],
"script": null,
"height": 2117893,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: 4d2JcrErJdrysicPCniQdhQcBb5Wf8nhU46jZt4ruFUU
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 |
---|