tx · 62z4tshDVKy96ptqXXLxEBFBrDXVAJZpUjD8uNhYp2wt 3N2Jd3GZk2NYbErYnUU1Scy4Zu32ofoMzmX: -0.01000000 Waves 2022.12.05 22:22 [2347470] smart account 3N2Jd3GZk2NYbErYnUU1Scy4Zu32ofoMzmX > SELF 0.00000000 Waves
{ "type": 13, "id": "62z4tshDVKy96ptqXXLxEBFBrDXVAJZpUjD8uNhYp2wt", "fee": 1000000, "feeAssetId": null, "timestamp": 1670268114693, "version": 2, "chainId": 84, "sender": "3N2Jd3GZk2NYbErYnUU1Scy4Zu32ofoMzmX", "senderPublicKey": "9arwEWPahxohRV7AjBLgLfVtFC5ZbRnU79x5gXwRzU1X", "proofs": [ "3tMpBZZrbpqgHRLpmkfma24izwq2kDHZaHCCXhEsayRnxJ72LMDsujQD9W4mokTSKBHaW3bfuU9sWd9YHsjM3zvv" ], "script": null, "height": 2347470, "applicationStatus": "succeeded", "spentComplexity": 0 } View: original | compacted Prev: G67tkXHjFD4mfrH3DW2ee1FVitWH3TALDuicLGpk2eqN Next: none Full:
Old | New | Differences | |
---|---|---|---|
1 | - | {-# STDLIB_VERSION 6 #-} | |
2 | - | {-# SCRIPT_TYPE ACCOUNT #-} | |
3 | - | {-# CONTENT_TYPE DAPP #-} | |
4 | - | let USDN_ASSET = base58'DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p' | |
5 | - | ||
6 | - | let vestingDapp = Address(base58'3PCbvPVQfSvVu88ip8Fm5YjwJhjEYk1Txhk') | |
7 | - | ||
8 | - | let adminAddress = Address(base58'3P3ct5dTqVmei17Y55rnC6rxqiZhtQmdc9U') | |
9 | - | ||
10 | - | let fee = 15 | |
11 | - | ||
12 | - | @Callable(i) | |
13 | - | func vf (whale,regular) = if ((i.caller != adminAddress)) | |
14 | - | then throw("only admin allowed") | |
15 | - | else { | |
16 | - | let withdrawalAmount = invoke(vestingDapp, "withdrawVestedAllUSDN", [whale, regular], nil) | |
17 | - | if ((withdrawalAmount == withdrawalAmount)) | |
18 | - | then match withdrawalAmount { | |
19 | - | case amount: Int => | |
20 | - | let feeAmount = fraction(amount, fee, 100) | |
21 | - | [ScriptTransfer(adminAddress, feeAmount, USDN_ASSET)] | |
22 | - | case _ => | |
23 | - | throw("Strict value is not equal to itself.") | |
24 | - | } | |
25 | - | else throw("Strict value is not equal to itself.") | |
26 | - | } | |
27 | - | ||
28 | - | ||
1 | + | # no script |
github/deemru/w8io/169f3d6 37.02 ms ◑