tx · o7335uxyPKdibL5JNGyNd5pU1gK5DeUn3YdJYZywLPQ
3N1cEKvDGKvWimVc7zmzJ9x7u9Bi4nJpZtV: -0.02055872 Waves
2018.10.04 18:42 [360910] smart account 3N1cEKvDGKvWimVc7zmzJ9x7u9Bi4nJpZtV > SELF 0.00000000 Waves
{
"type": 13,
"id": "o7335uxyPKdibL5JNGyNd5pU1gK5DeUn3YdJYZywLPQ",
"fee": 2055872,
"feeAssetId": null,
"timestamp": 1538667773115,
"version": 1,
"sender": "3N1cEKvDGKvWimVc7zmzJ9x7u9Bi4nJpZtV",
"senderPublicKey": "9gXkkWneXxuVZgVfPfkYRiFFdSPeuwvP6nb4JWhyZGHY",
"proofs": [
"5mgo4oQ7RmD7K7TeNEDfC1GsmG7NhybZ8t25DYPJDocrSQmTcm4qQ1d8E68tNaHfbbqADgVNtCdurhMFLhsfSy1W",
"5wB3Ff8iiaM1Ry52ve5dYYPkwvKSFiKgGLHo14VgA3h5ptcRD2ZziBbfnnHqfxtnc3yhhsYh1VGtahLFo8pG7w7N",
"5BhUmnyqJbUjCZCeYR34DLP6HHYfLCLjmJXQwu9MP19AezuMh5XWjaXVtLZQWoTUXt9YTc2s1KoyiERX4VbhDKyj"
],
"script": null,
"chainId": 84,
"height": 360910,
"spentComplexity": 0
}
View: original | compacted
Prev: BE8Lt7LUj21yMwK17sJbonPw5wEdBjHUZ55PKCCL9DvG
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 |
---|