tx · 12jtG324YYnY175kr46fWQYrnuoBqthsxmnKZSUVEpCy
3MuMiS4jTTcuf13zMuonyb8JBE1jJkQ5JNe: -0.01400000 Waves
2021.02.19 00:17 [1404108] smart account 3MuMiS4jTTcuf13zMuonyb8JBE1jJkQ5JNe > SELF 0.00000000 Waves
{
"type": 13,
"id": "12jtG324YYnY175kr46fWQYrnuoBqthsxmnKZSUVEpCy",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1613683111989,
"version": 2,
"chainId": 84,
"sender": "3MuMiS4jTTcuf13zMuonyb8JBE1jJkQ5JNe",
"senderPublicKey": "8QFH4kvTaVWhAPErMqKKRzRhYtv7egJFn1UpMdj8pMf3",
"proofs": [
"3j4pmU6oWiXYUUAunkuGHTwYLMVTPWJjXSdsAYihudZzW9aWD27gXJvo8uWsz9RSRJ5LbHnHqkysJRtqJCRB1GcT"
],
"script": "base64:AAIEAAAAAAAAAAcIAhIDCgEIAAAAAAAAAAEAAAABaQEAAAANUmVnaXN0ZXJFbWFpbAAAAAEAAAAJWW91ckVtYWlsBAAAAAdhc3NldGlkAQAAACC6vVI7UxTCnVRWGLR3ztyYkk4CUUFVVlvuen2G1r3cOwQAAAADcG10AwkAAAAAAAACCQABkAAAAAEIBQAAAAFpAAAACHBheW1lbnRzAAAAAAAAAAABCQABkQAAAAIIBQAAAAFpAAAACHBheW1lbnRzAAAAAAAAAAAACQAAAgAAAAECAAAAHEF0dGFjaGVkIHBheW1lbnQgaXMgcmVxdWlyZWQDCQEAAAACIT0AAAACCAUAAAADcG10AAAAB2Fzc2V0SWQFAAAAB2Fzc2V0aWQJAAACAAAAAQIAAAA/WW91IG5lZWQgdG8gY2hvb3NlIGV4YWN0IDAuNSBVU0RUIHRvIFNpZ24gVHhuIG5vdCBvdGhlciBhc3NldHMuBAAAAAlmaW5kZW1haWwJAAQdAAAAAgUAAAAEdGhpcwUAAAAJWW91ckVtYWlsBAAAAApjdXJyZW50S2V5CQACWAAAAAEICAUAAAABaQAAAAZjYWxsZXIAAAAFYnl0ZXMDCQAAAAAAAAIFAAAACWZpbmRlbWFpbAUAAAAJWW91ckVtYWlsCQAAAgAAAAECAAAAKVVzZXIgQWxyZWFkeSBSZWdpc3RlcmVkIGJ1dCBub3QgVmVyaWZpZWQuBAAAAAZBbW91bnQEAAAAByRtYXRjaDAJAAQaAAAAAgUAAAAEdGhpcwUAAAAKY3VycmVudEtleQMJAAABAAAAAgUAAAAHJG1hdGNoMAIAAAADSW50BAAAAAFhBQAAAAckbWF0Y2gwBQAAAAFhAAAAAAAAAAAACQAETAAAAAIJAQAAAAtTdHJpbmdFbnRyeQAAAAIFAAAACVlvdXJFbWFpbAUAAAAKY3VycmVudEtleQkABEwAAAACCQEAAAALU3RyaW5nRW50cnkAAAACCQABLAAAAAICAAAAClN0YXR1c19PZl8FAAAACVlvdXJFbWFpbAIAAAAKVW52ZXJpZmllZAUAAAADbmlsAAAAAQAAAAJ0eAEAAAAGdmVyaWZ5AAAAAAQAAAAHJG1hdGNoMAUAAAACdHgJAAH0AAAAAwgFAAAAAnR4AAAACWJvZHlCeXRlcwkAAZEAAAACCAUAAAACdHgAAAAGcHJvb2ZzAAAAAAAAAAAACAUAAAACdHgAAAAPc2VuZGVyUHVibGljS2V52Giakw==",
"height": 1404108,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: 2YEMtxVfarPvCia4EPTRChH8AamWH8iZ58Urcs99mhMJ
Next: 7bgr9EwTwips82GB24Z4kWAdYidgwnQkFvwyWTPC9vW1
Diff:
Old | New | | Differences |
---|
12 | 12 | | if ((pmt.assetId != assetid)) |
---|
13 | 13 | | then throw("You need to choose exact 0.5 USDT to Sign Txn not other assets.") |
---|
14 | 14 | | else { |
---|
| 15 | + | let findemail = getString(this, YourEmail) |
---|
15 | 16 | | let currentKey = toBase58String(i.caller.bytes) |
---|
16 | | - | let Amount = match getInteger(this, currentKey) { |
---|
17 | | - | case a: Int => |
---|
18 | | - | a |
---|
19 | | - | case _ => |
---|
20 | | - | 0 |
---|
21 | | - | } |
---|
22 | | - | [StringEntry(currentKey, YourEmail), StringEntry(("Status_Of_" + YourEmail), "Unverified")] |
---|
| 17 | + | if ((findemail == YourEmail)) |
---|
| 18 | + | then throw("User Already Registered but not Verified.") |
---|
| 19 | + | else { |
---|
| 20 | + | let Amount = match getInteger(this, currentKey) { |
---|
| 21 | + | case a: Int => |
---|
| 22 | + | a |
---|
| 23 | + | case _ => |
---|
| 24 | + | 0 |
---|
| 25 | + | } |
---|
| 26 | + | [StringEntry(YourEmail, currentKey), StringEntry(("Status_Of_" + YourEmail), "Unverified")] |
---|
| 27 | + | } |
---|
23 | 28 | | } |
---|
24 | 29 | | } |
---|
25 | 30 | | |
---|
Full:
Old | New | | Differences |
---|
1 | 1 | | {-# STDLIB_VERSION 4 #-} |
---|
2 | 2 | | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | 3 | | {-# CONTENT_TYPE DAPP #-} |
---|
4 | 4 | | |
---|
5 | 5 | | |
---|
6 | 6 | | @Callable(i) |
---|
7 | 7 | | func RegisterEmail (YourEmail) = { |
---|
8 | 8 | | let assetid = base58'DZxGZzacrhMS93EHK8LrCeYCrVWJaF76UpPcyHuaH9mL' |
---|
9 | 9 | | let pmt = if ((size(i.payments) == 1)) |
---|
10 | 10 | | then i.payments[0] |
---|
11 | 11 | | else throw("Attached payment is required") |
---|
12 | 12 | | if ((pmt.assetId != assetid)) |
---|
13 | 13 | | then throw("You need to choose exact 0.5 USDT to Sign Txn not other assets.") |
---|
14 | 14 | | else { |
---|
| 15 | + | let findemail = getString(this, YourEmail) |
---|
15 | 16 | | let currentKey = toBase58String(i.caller.bytes) |
---|
16 | | - | let Amount = match getInteger(this, currentKey) { |
---|
17 | | - | case a: Int => |
---|
18 | | - | a |
---|
19 | | - | case _ => |
---|
20 | | - | 0 |
---|
21 | | - | } |
---|
22 | | - | [StringEntry(currentKey, YourEmail), StringEntry(("Status_Of_" + YourEmail), "Unverified")] |
---|
| 17 | + | if ((findemail == YourEmail)) |
---|
| 18 | + | then throw("User Already Registered but not Verified.") |
---|
| 19 | + | else { |
---|
| 20 | + | let Amount = match getInteger(this, currentKey) { |
---|
| 21 | + | case a: Int => |
---|
| 22 | + | a |
---|
| 23 | + | case _ => |
---|
| 24 | + | 0 |
---|
| 25 | + | } |
---|
| 26 | + | [StringEntry(YourEmail, currentKey), StringEntry(("Status_Of_" + YourEmail), "Unverified")] |
---|
| 27 | + | } |
---|
23 | 28 | | } |
---|
24 | 29 | | } |
---|
25 | 30 | | |
---|
26 | 31 | | |
---|
27 | 32 | | @Verifier(tx) |
---|
28 | 33 | | func verify () = match tx { |
---|
29 | 34 | | case _ => |
---|
30 | 35 | | sigVerify(tx.bodyBytes, tx.proofs[0], tx.senderPublicKey) |
---|
31 | 36 | | } |
---|
32 | 37 | | |
---|