tx · DgdAa1ZwsHfNyrVtQdHwUjCL4k5WyrdctHJSe7YgAxuJ
3N5CepdfxL8JU6kZmYPXQPi8jssUhAYmTpr: -0.01400000 Waves
2019.07.26 16:45 [603107] smart account 3N5CepdfxL8JU6kZmYPXQPi8jssUhAYmTpr > SELF 0.00000000 Waves
{
"type": 13,
"id": "DgdAa1ZwsHfNyrVtQdHwUjCL4k5WyrdctHJSe7YgAxuJ",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1564148766347,
"version": 1,
"sender": "3N5CepdfxL8JU6kZmYPXQPi8jssUhAYmTpr",
"senderPublicKey": "6PSLaJcAWb2P2Bkd6YYJ5SavEionQV1YtVZYo7DtwwJ",
"proofs": [
"",
"4NrdG3TP3PPABAqHC63wQkJ1VaXfhPRD27UbevwVijKqeY6NWMogPy51wu1tkzyYe1Fz3yMJbUdGYzZmaYT1dSG",
"3Z5ZApHUgcD15g77XGxPiu6yf2C43hKx7Fufr5WYFAQQaCqEsYKPP71j9fiTqt4JPzwGxQ1cbuiqHYS25tetVr6H"
],
"script": null,
"chainId": 84,
"height": 603107,
"spentComplexity": 0
}
View: original | compacted
Prev: Hg7KK47dmNAfohmeM445MoxUuPBuzzy62KYN52Cq9Lim
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 |
---|