tx · J2QvyCyCtYtsYMpXzU2VLMPZEDjxgjZSjLvwxboyYJtG
3N8UpBJxwznhnDDDuRbi3zoqCN5NDmt6mgi: -0.00900000 Waves
2022.05.30 10:41 [2074110] smart account 3N8UpBJxwznhnDDDuRbi3zoqCN5NDmt6mgi > SELF 0.00000000 Waves
{
"type": 13,
"id": "J2QvyCyCtYtsYMpXzU2VLMPZEDjxgjZSjLvwxboyYJtG",
"fee": 900000,
"feeAssetId": null,
"timestamp": 1653896545065,
"version": 2,
"chainId": 84,
"sender": "3N8UpBJxwznhnDDDuRbi3zoqCN5NDmt6mgi",
"senderPublicKey": "BU18Cxu3JjfLcv8eE4p5xj1cYEMNdVx5MVuVsUxqy1xd",
"proofs": [
"",
"qgE6JLLKsght55PbCE3vYqGNrdiDfckzWPYqJxohqdQwQxCCVbRWHWJbcyWo8vp9xYS7D4BXm7NzUNYcoTyEdrW",
"5uo24fJgM1dvo1tD2XnBTj3SRawxd89VBu9DtpqX2J1Tb2NWDag2qPFk1szDRMxFRvWq7BZbwJpQrnk6TiQVeXYa"
],
"script": null,
"height": 2074110,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: 6ViAdFQNT5CUE8Bu6d11X9MGsqtcPyQAeVTFNUkbgUqk
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 |
---|