tx · Fhwi8j63o6paBFtjPvrXLutgAxmqRMG2HTrmBVk1vA81
3NBsbvjbvzrspaP8qfMSv7HEhT5seMNGEd9: -0.01400000 Waves
2020.03.11 14:54 [904455] smart account 3NBsbvjbvzrspaP8qfMSv7HEhT5seMNGEd9 > SELF 0.00000000 Waves
{
"type": 13,
"id": "Fhwi8j63o6paBFtjPvrXLutgAxmqRMG2HTrmBVk1vA81",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1583927678809,
"version": 1,
"sender": "3NBsbvjbvzrspaP8qfMSv7HEhT5seMNGEd9",
"senderPublicKey": "2F2W3ZmrQ8hBwoDKSUbQPsFPgXpU3cX3CASfd1nivqQd",
"proofs": [
"",
"2eZmE9Ejuo36SMQ4YM4kGJ9YZrtJwX9kAqdjAyerJYvqxKi75exPeEXTW8ZtAFb1qiLEuCxJq1WQSisCTaUn6qof",
"kWnDZ8VDxu8U2H5ow8bsLHer8TH3Cg8ojEJLH25UpZqdei2wNf3fLHm45AFFRxwTfii4jcX2vJD4ucxxK6p9KWP"
],
"script": null,
"chainId": 84,
"height": 904455,
"spentComplexity": 0
}
View: original | compacted
Prev: 6UYZbP5gjkEjzrTLbUE7x4UhxNBxbrHeWKhgbmPTQ3i4
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 |
---|