tx · 6Z2FZyvzLQa6n6NbPyxQ6epENvQrw3CWuK7J3X2Te7R3
3N3BM5eJX2hz3E687BpdNfnrLwA4UVqV6rm: -0.01400000 Waves
2019.07.01 13:40 [566207] smart account 3N3BM5eJX2hz3E687BpdNfnrLwA4UVqV6rm > SELF 0.00000000 Waves
{
"type": 13,
"id": "6Z2FZyvzLQa6n6NbPyxQ6epENvQrw3CWuK7J3X2Te7R3",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1561977662184,
"version": 1,
"sender": "3N3BM5eJX2hz3E687BpdNfnrLwA4UVqV6rm",
"senderPublicKey": "uLhdqWV1jFjNjjRuKWWm87zEpXkyuH1q9fjaxjgr2ry",
"proofs": [
"",
"2AdYRembpncMAVBVuvLjuqwYSnwf9AWtc5Uns4BYRkGfKnHjV4zwsihDhK8JaAxwB6aTDCwfKePcRtQzjJD73Kgy",
"cE1HXhUfJ3xCnUvMJPTMLiqDXwpZFKZoVgMZcCCNvmKrBPWmNDBWg8udziiHDxR3oPmpkfugdifFPP4bi7dMEZR"
],
"script": null,
"chainId": 84,
"height": 566207,
"spentComplexity": 0
}
View: original | compacted
Prev: GNiGXzpkvYp2CfRoyr3tvyUJWpnhfVDeBCaW5m8Uces3
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 |
---|