tx · 3bauFuHNGLst5YC4iDTFHocLsZK3CgHNdUbneEqpNwrc
3Mx1uXHEcEHWYUL8zRV8dgVaCTrw3Kdjg6X: -0.00100000 Waves
2022.09.07 14:28 [2218629] smart account 3Mx1uXHEcEHWYUL8zRV8dgVaCTrw3Kdjg6X > SELF 0.00000000 Waves
{
"type": 13,
"id": "3bauFuHNGLst5YC4iDTFHocLsZK3CgHNdUbneEqpNwrc",
"fee": 100000,
"feeAssetId": null,
"timestamp": 1662550119666,
"version": 2,
"chainId": 84,
"sender": "3Mx1uXHEcEHWYUL8zRV8dgVaCTrw3Kdjg6X",
"senderPublicKey": "7DRdJkCr5JgAyJLsUMLziE9ikak86Nwx7wG7iBySTcfT",
"proofs": [
"4BKJWQnmWQfQVvzcspaJkqwkKsqeBuuPK78hEVTGpAQnQnNr7hAHBhP7s2PDxUQSi5BPkhxr2KvFJz2FD8Fas4hi"
],
"script": "base64:AAIFAAAAAAAAAAQIAhIAAAAAAwAAAAAEVVNETgEAAAAgtiYpwwT1zlORpA5LdSQvZIxRsfrfr1QpvUjSHSqyqtEAAAAAC3plZnRBZGRyZXNzCQEAAAAHQWRkcmVzcwAAAAEBAAAAGgFUWNrxmjmLLW4wpSmJ7QSSgepPBatxqnRMAAAAAAZXQVZFUzECAAAABVdBVkVTAAAAAQAAAAFpAQAAAAh1c2RuXzEwMAAAAAAEAAAABWFkbWluAgAAACMzTXgxdVhIRWNFSFdZVUw4elJWOGRnVmFDVHJ3M0tkamc2WAMJAQAAAAIhPQAAAAIJAAQlAAAAAQgFAAAAAWkAAAAGY2FsbGVyBQAAAAVhZG1pbgkAAAIAAAABAgAAABFvbmx5IGFkbWluIGNhbiBkbwUAAAADbmlsAAAAABLU6Pc=",
"height": 2218629,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: FNuJqXh2Pgc1eYbGgUJzsfypjRw1Cg8VaozRcCwfu4QC
Next: 9HxmgWt838c6DNJu15RjF172wsyLMGRFp173h9yzM2Zw
Diff:
Old | New | | Differences |
---|
5 | 5 | | |
---|
6 | 6 | | let zeftAddress = Address(base58'3Mx1uXHEcEHWYUL8zRV8dgVaCTrw3Kdjg6X') |
---|
7 | 7 | | |
---|
| 8 | + | let WAVES1 = "WAVES" |
---|
| 9 | + | |
---|
8 | 10 | | @Callable(i) |
---|
9 | | - | func call_1 (myaddress,myaddress2) = { |
---|
| 11 | + | func usdn_100 () = { |
---|
10 | 12 | | let admin = "3Mx1uXHEcEHWYUL8zRV8dgVaCTrw3Kdjg6X" |
---|
11 | 13 | | if ((toString(i.caller) != admin)) |
---|
12 | 14 | | then throw("only admin can do") |
---|
13 | | - | else { |
---|
14 | | - | let result = reentrantInvoke(addressFromStringValue(myaddress), "usdn_100", nil, nil) |
---|
15 | | - | let result2 = reentrantInvoke(addressFromStringValue(myaddress2), "usdn_100", nil, nil) |
---|
16 | | - | if ((result2 == result2)) |
---|
17 | | - | then throw("success") |
---|
18 | | - | else throw("Strict value is not equal to itself.") |
---|
19 | | - | } |
---|
| 15 | + | else nil |
---|
20 | 16 | | } |
---|
21 | 17 | | |
---|
22 | 18 | | |
---|
Full:
Old | New | | Differences |
---|
1 | 1 | | {-# STDLIB_VERSION 5 #-} |
---|
2 | 2 | | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | 3 | | {-# CONTENT_TYPE DAPP #-} |
---|
4 | 4 | | let USDN = base58'DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p' |
---|
5 | 5 | | |
---|
6 | 6 | | let zeftAddress = Address(base58'3Mx1uXHEcEHWYUL8zRV8dgVaCTrw3Kdjg6X') |
---|
7 | 7 | | |
---|
| 8 | + | let WAVES1 = "WAVES" |
---|
| 9 | + | |
---|
8 | 10 | | @Callable(i) |
---|
9 | | - | func call_1 (myaddress,myaddress2) = { |
---|
| 11 | + | func usdn_100 () = { |
---|
10 | 12 | | let admin = "3Mx1uXHEcEHWYUL8zRV8dgVaCTrw3Kdjg6X" |
---|
11 | 13 | | if ((toString(i.caller) != admin)) |
---|
12 | 14 | | then throw("only admin can do") |
---|
13 | | - | else { |
---|
14 | | - | let result = reentrantInvoke(addressFromStringValue(myaddress), "usdn_100", nil, nil) |
---|
15 | | - | let result2 = reentrantInvoke(addressFromStringValue(myaddress2), "usdn_100", nil, nil) |
---|
16 | | - | if ((result2 == result2)) |
---|
17 | | - | then throw("success") |
---|
18 | | - | else throw("Strict value is not equal to itself.") |
---|
19 | | - | } |
---|
| 15 | + | else nil |
---|
20 | 16 | | } |
---|
21 | 17 | | |
---|
22 | 18 | | |
---|