tx · ADLLUsMHhTg4YR2grRGfvEQxMbGZeNHnrMHd87iB7UUE
3MuU9MokCGJk8uwJBVWJqu6avntpyaYqk2d: -0.01400000 Waves
2022.01.18 10:21 [1884073] smart account 3MuU9MokCGJk8uwJBVWJqu6avntpyaYqk2d > SELF 0.00000000 Waves
{
"type": 13,
"id": "ADLLUsMHhTg4YR2grRGfvEQxMbGZeNHnrMHd87iB7UUE",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1642490262347,
"version": 2,
"chainId": 84,
"sender": "3MuU9MokCGJk8uwJBVWJqu6avntpyaYqk2d",
"senderPublicKey": "6fmpP1JwsGN2dXGB951nbT3yUj2oBQ5FZj284itXocpu",
"proofs": [
"4G1cqSFsS39NPPtyQzhZ8R3J4vfthjqyaas2ybEsSrRKLV2fjB2DrEHa5xAA18qa2ANfrczMHQmRmEzigZVyRetB"
],
"script": "base64:BQbtKNoM",
"height": 1884073,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: 5tAYD8hW25GMs321gp4mARWSPTAEitpoWB9WjU1UP1Tn
Next: Hs45RsNa9hi8FAdqXrAykge1qkHXHoiEF4Yaeg2F2zfd
Full:
Old | New | | Differences |
---|
1 | 1 | | {-# STDLIB_VERSION 5 #-} |
---|
2 | | - | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | | - | {-# CONTENT_TYPE DAPP #-} |
---|
4 | | - | |
---|
5 | | - | |
---|
6 | | - | |
---|
7 | | - | @Verifier(tx) |
---|
8 | | - | func verify () = { |
---|
9 | | - | let firstUser = base58'6fmpP1JwsGN2dXGB951nbT3yUj2oBQ5FZj284itXocpu' |
---|
10 | | - | let firstUserSigned = if (sigVerify(tx.bodyBytes, tx.proofs[0], firstUser)) |
---|
11 | | - | then 1 |
---|
12 | | - | else 0 |
---|
13 | | - | let signaturesCount = firstUserSigned |
---|
14 | | - | match tx { |
---|
15 | | - | case t: DataTransaction => |
---|
16 | | - | (signaturesCount >= 1) |
---|
17 | | - | case _ => |
---|
18 | | - | (signaturesCount >= 1) |
---|
19 | | - | } |
---|
20 | | - | } |
---|
21 | | - | |
---|
| 2 | + | {-# CONTENT_TYPE EXPRESSION #-} |
---|
| 3 | + | true |
---|