tx · 521vPGh2RwsYwKiHq8QzhmG8cHxaNDwbfpvCbhKobwGr
3MtXzccPrCAoKans9TD9sp3qoFHiajPA4Uu: -0.01400000 Waves
2019.03.07 11:19 [525238] smart account 3MtXzccPrCAoKans9TD9sp3qoFHiajPA4Uu > SELF 0.00000000 Waves
{
"type": 13,
"id": "521vPGh2RwsYwKiHq8QzhmG8cHxaNDwbfpvCbhKobwGr",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1551946702682,
"version": 1,
"sender": "3MtXzccPrCAoKans9TD9sp3qoFHiajPA4Uu",
"senderPublicKey": "FKRh2Dkxjxk5YkTUBByefDnJRdPvJSDFhB7sFCkM7kVC",
"proofs": [
"",
"45zB8XGwirxHNfA5q8hzhhvcgfhf7ZviZQiDduA75QdtTuWDStVhfxdDBSDxL9wJGPqMnaxunJPUcE1tvrxJnTYe",
"5QijsjFqbVkegqGxg4qQ5m7xz4rQpahdaZCrJvRWC4BEobHEujL1z1tiTXCxWgMQRzbLsZUSut5Jrs69qTZQwWPQ"
],
"script": null,
"chainId": 84,
"height": 525238,
"spentComplexity": 0
}
View: original | compacted
Prev: 4BaKyR5odAV4hUHoio3hcHxC7FTWtQfe2SPg8T5b9oNP
Next: 5P3oTBVgg3yZX9y8fj15JLxfJzDdom63s3uTxSaUQb2B
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 |
---|