tx · 4PeTLZMdZMiSsAmryV5HiwY9mw66W9zbE92EVGSA4M2K
3Mqnv1LY2i4hshvHyccL5GEAVbVPRerPjKM: -0.01000000 Waves
2022.11.24 18:57 [2331394] smart account 3Mqnv1LY2i4hshvHyccL5GEAVbVPRerPjKM > SELF 0.00000000 Waves
{
"type": 13,
"id": "4PeTLZMdZMiSsAmryV5HiwY9mw66W9zbE92EVGSA4M2K",
"fee": 1000000,
"feeAssetId": null,
"timestamp": 1669305475775,
"version": 2,
"chainId": 84,
"sender": "3Mqnv1LY2i4hshvHyccL5GEAVbVPRerPjKM",
"senderPublicKey": "FB5Eb3jaoFSDQEnfsjbmvMoP3Cc8ejvBySpsfYWC1vBg",
"proofs": [
"57PynRRuF2BVPCwQKmSRTh8nVPghM8KTrhCfxJKrMMsJ43AVqAsRWSd6YAHP6cuJ3TCPeXbWrod2P7Anu8VNhFrc"
],
"script": "base64:AAIFAAAAAAAAAAgIAhIECgIICAAAAAEBAAAAB2dldERhdGEAAAACAAAAA2FkcgAAAANrZXkEAAAABGRhdGEEAAAAByRtYXRjaDAJAAQdAAAAAgUAAAADYWRyBQAAAANrZXkDCQAAAQAAAAIFAAAAByRtYXRjaDACAAAABlN0cmluZwQAAAABYQUAAAAHJG1hdGNoMAUAAAABYQIAAAAABQAAAARkYXRhAAAAAQAAAAFpAQAAABpzYXZlVmFsdWVPblN1cHBsaWVyQWNjb3VudAAAAAIAAAANZGVsSW5mVGV4dEtleQAAAA9kZWxJbmZUZXh0VmFsdWUEAAAADGVnZ2VyQWRkcmVzcwkAAlgAAAABCAgFAAAAAWkAAAAGY2FsbGVyAAAABWJ5dGVzBAAAAA5lZ2dlclB1YmxpY0tleQkAAlgAAAABCAUAAAABaQAAAA9jYWxsZXJQdWJsaWNLZXkEAAAAEmVnZ2VyUHVibGljS2V5SGFzaAkAAfcAAAABCQABmwAAAAEFAAAADmVnZ2VyUHVibGljS2V5BAAAACNlZ2dlclB1YmxpY0tleUhhc2hPblN1cHBsaWVyQWNjb3VudAkBAAAAB2dldERhdGEAAAACBQAAAAR0aGlzAgAAABRjb25uZWN0aW9uLkVnZ2VyLnJlZgkABEwAAAACCQEAAAALQmluYXJ5RW50cnkAAAACAgAAAAV0ZXN0MQUAAAASZWdnZXJQdWJsaWNLZXlIYXNoBQAAAANuaWwAAAABAAAAAnR4AQAAAAZ2ZXJpZnkAAAAACQAB9AAAAAMIBQAAAAJ0eAAAAAlib2R5Qnl0ZXMJAAGRAAAAAggFAAAAAnR4AAAABnByb29mcwAAAAAAAAAAAAgFAAAAAnR4AAAAD3NlbmRlclB1YmxpY0tleQ0/FKM=",
"height": 2331394,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: 2bZrqWkxKK1ay4H4Ju5MgZcUET5S2UXAWZ2D4bhGnygt
Next: ECE1oXh7iHS21hi45S7ni6ahWj2kdngkBRkfSiD1S3VF
Diff:
Old | New | | Differences |
---|
18 | 18 | | let eggerPublicKey = toBase58String(i.callerPublicKey) |
---|
19 | 19 | | let eggerPublicKeyHash = sha256(toBytes(eggerPublicKey)) |
---|
20 | 20 | | let eggerPublicKeyHashOnSupplierAccount = getData(this, "connection.Egger.ref") |
---|
21 | | - | throw(toUtf8String(eggerPublicKeyHash)) |
---|
| 21 | + | [BinaryEntry("test1", eggerPublicKeyHash)] |
---|
22 | 22 | | } |
---|
23 | 23 | | |
---|
24 | 24 | | |
---|
Full:
Old | New | | Differences |
---|
1 | 1 | | {-# STDLIB_VERSION 5 #-} |
---|
2 | 2 | | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | 3 | | {-# CONTENT_TYPE DAPP #-} |
---|
4 | 4 | | func getData (adr,key) = { |
---|
5 | 5 | | let data = match getString(adr, key) { |
---|
6 | 6 | | case a: String => |
---|
7 | 7 | | a |
---|
8 | 8 | | case _ => |
---|
9 | 9 | | "" |
---|
10 | 10 | | } |
---|
11 | 11 | | data |
---|
12 | 12 | | } |
---|
13 | 13 | | |
---|
14 | 14 | | |
---|
15 | 15 | | @Callable(i) |
---|
16 | 16 | | func saveValueOnSupplierAccount (delInfTextKey,delInfTextValue) = { |
---|
17 | 17 | | let eggerAddress = toBase58String(i.caller.bytes) |
---|
18 | 18 | | let eggerPublicKey = toBase58String(i.callerPublicKey) |
---|
19 | 19 | | let eggerPublicKeyHash = sha256(toBytes(eggerPublicKey)) |
---|
20 | 20 | | let eggerPublicKeyHashOnSupplierAccount = getData(this, "connection.Egger.ref") |
---|
21 | | - | throw(toUtf8String(eggerPublicKeyHash)) |
---|
| 21 | + | [BinaryEntry("test1", eggerPublicKeyHash)] |
---|
22 | 22 | | } |
---|
23 | 23 | | |
---|
24 | 24 | | |
---|
25 | 25 | | @Verifier(tx) |
---|
26 | 26 | | func verify () = sigVerify(tx.bodyBytes, tx.proofs[0], tx.senderPublicKey) |
---|
27 | 27 | | |
---|