tx · 4hviAo87g49ivJocubGkFkg3FDe9reZNC4ocR6d2ut4A
3NAQmWRDTWV2ytWEpiiAPCpSakkmVnsfKez: -0.00900000 Waves
2022.05.26 20:58 [2068975] smart account 3NAQmWRDTWV2ytWEpiiAPCpSakkmVnsfKez > SELF 0.00000000 Waves
{
"type": 13,
"id": "4hviAo87g49ivJocubGkFkg3FDe9reZNC4ocR6d2ut4A",
"fee": 900000,
"feeAssetId": null,
"timestamp": 1653587947961,
"version": 2,
"chainId": 84,
"sender": "3NAQmWRDTWV2ytWEpiiAPCpSakkmVnsfKez",
"senderPublicKey": "57oKxZBoh35MYEDr4Tdi1D7u68qB9RjF9mLEEkT8je2t",
"proofs": [
"",
"3mfmMJTbuTakbRnu2GsyYriE5JSCwPJMeG9Cg7kskmTWhPtXWbAUGwCo335Ycmfj4poth6C9KxE1XSpZXBx2HzaR",
"aJk6BtA5A9FZ7c54pbayBs63PsUv7Rsev1RYNhLSf4PDJYRtJp5MmW2k6B6AiXJQmLkWmDCkUBMTTitheBCVAjt"
],
"script": null,
"height": 2068975,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: FYZxpHQ57Agrtk8DThQ376WF61jreNveDnguwMWeohyT
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 |
---|