tx · B6XrNP3X12PmrM5L4K6oTea5fCMJEWxBJfatTRrcCShc
3MsoXAB61VRsWnCY5M6Da75qvkCrPw6sdKH: -0.01400000 Waves
2019.12.19 19:46 [816054] smart account 3MsoXAB61VRsWnCY5M6Da75qvkCrPw6sdKH > SELF 0.00000000 Waves
{
"type": 13,
"id": "B6XrNP3X12PmrM5L4K6oTea5fCMJEWxBJfatTRrcCShc",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1576773997792,
"version": 1,
"sender": "3MsoXAB61VRsWnCY5M6Da75qvkCrPw6sdKH",
"senderPublicKey": "BCU6VayKTXVb1a9yizCx2o53Ew2zwRseNdM1Kc2aDxLD",
"proofs": [
"",
"3S8w7FZSdUaM6RTMx3ySY48dMJfKpdhMtXVJ9TEWtcoFgjg7gpXwr1KM4Fh4Mrzje3KLebjBq11FiURqKHJd2WJE",
"xkqqhmj3EW6CiGnVimfUAhY9cURMZr3Pft1EQuFKbqVBZ4UCaZjGrH3V7HnHcZoN5D1WM9qze1c47mTRWNowDPt"
],
"script": null,
"chainId": 84,
"height": 816054,
"spentComplexity": 0
}
View: original | compacted
Prev: HqsKLyuQgkvYQY8DTck24uCWP8e3k3Vbh1oo3i9QzHYd
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 |
---|