wan-ton-sdk 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/Bridge.compile.ts +8 -0
  2. package/Bridge.ts +645 -0
  3. package/Bridge.ts.org +647 -0
  4. package/Fake.compile.ts +8 -0
  5. package/GroupApprove.compile.ts +6 -0
  6. package/GroupApprove.ts +274 -0
  7. package/JettonMinter.compile.ts +5 -0
  8. package/JettonMinter.ts +135 -0
  9. package/JettonWallet.compile.ts +5 -0
  10. package/JettonWallet.ts +127 -0
  11. package/README.md +24 -0
  12. package/Signature.compile.ts +6 -0
  13. package/Signature.ts +105 -0
  14. package/address.compile.ts +8 -0
  15. package/client/1.json +1730 -0
  16. package/client/client.ts +73 -0
  17. package/client/log/.ba8901062aebb86bf525b42c65ff84f9485419e4-audit.json +15 -0
  18. package/client/log/wan-ton-sdk.out.2024-12-19 +0 -0
  19. package/code/decode.spec.ts +81 -0
  20. package/code/encode-decode.ts +622 -0
  21. package/code/log/.ba8901062aebb86bf525b42c65ff84f9485419e4-audit.json +20 -0
  22. package/code/log/wan-ton-sdk.out.2025-01-15 +0 -0
  23. package/code/log/wan-ton-sdk.out.2025-01-20 +0 -0
  24. package/code/userLock.ts +291 -0
  25. package/common.ts +62 -0
  26. package/config/config-ex.ts +25 -0
  27. package/config/config.ts +1 -0
  28. package/const/const-value.ts +33 -0
  29. package/contractAccess/bridgeAccess.ts +60 -0
  30. package/contractAccess/groupApproveAccess.ts +59 -0
  31. package/data/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs.json +7348 -0
  32. package/db/Db.spec.ts +193 -0
  33. package/db/Db.ts +736 -0
  34. package/db/DbAccess.spec.ts +23 -0
  35. package/db/DbAccess.ts +174 -0
  36. package/db/common.ts +94 -0
  37. package/db/log/.ba8901062aebb86bf525b42c65ff84f9485419e4-audit.json +15 -0
  38. package/db/log/wan-ton-sdk.out.2025-04-21 +0 -0
  39. package/event/getEvents.ts +441 -0
  40. package/event/log/.ba8901062aebb86bf525b42c65ff84f9485419e4-audit.json +15 -0
  41. package/event/log/wan-ton-sdk.out.2024-12-19 +0 -0
  42. package/example/0:1.txt +1 -0
  43. package/example/AddToken-ex.ts +148 -0
  44. package/example/README.md +21 -0
  45. package/example/addSmg-ex.ts +78 -0
  46. package/example/addTokenPair-ex.ts +73 -0
  47. package/example/compileContract-ex.ts +10 -0
  48. package/example/converTranToTonTran.ts +43 -0
  49. package/example/createDb-ex.ts +8 -0
  50. package/example/dbFeedTrans-ex.ts +20 -0
  51. package/example/delTokenPair-ex.ts +63 -0
  52. package/example/deploy-ex.ts +68 -0
  53. package/example/getAllEvents-ex.ts +61 -0
  54. package/example/getAllTrans.ts +32 -0
  55. package/example/getContractState-ex.ts +33 -0
  56. package/example/getEventByHash-ex.ts +39 -0
  57. package/example/getEvents-ex.ts +55 -0
  58. package/example/getJettonInfo-ex.ts +44 -0
  59. package/example/getTokenPair-ex.ts +47 -0
  60. package/example/getTransByRange-ex.ts +81 -0
  61. package/example/getTransaction-ex.ts +62 -0
  62. package/example/isTranSuccess-ex.ts +33 -0
  63. package/example/locateTx-ex.ts +44 -0
  64. package/example/log/.ba8901062aebb86bf525b42c65ff84f9485419e4-audit.json +55 -0
  65. package/example/log/wan-ton-sdk.out.2025-04-21 +447 -0
  66. package/example/log/wan-ton-sdk.out.2025-04-22 +1918 -0
  67. package/example/log/wan-ton-sdk.out.2025-04-23 +4216 -0
  68. package/example/log/wan-ton-sdk.out.2025-04-24.gz +0 -0
  69. package/example/log/wan-ton-sdk.out.2025-04-25 +46814 -0
  70. package/example/log/wan-ton-sdk.out.2025-04-27.gz +0 -0
  71. package/example/log/wan-ton-sdk.out.2025-04-28 +4966 -0
  72. package/example/log/wan-ton-sdk.out.2025-04-29 +1328 -0
  73. package/example/log/wan-ton-sdk.out.2025-04-30 +9 -0
  74. package/example/mintToken-ex.ts +82 -0
  75. package/example/setFee-ex.ts +82 -0
  76. package/example/setFeeProxy.ts +70 -0
  77. package/example/smgRelease-ex.ts +173 -0
  78. package/example/upgradeBridgeSc-ex.ts +49 -0
  79. package/example/userLock-ex.ts +78 -0
  80. package/fee/fee.ts +23 -0
  81. package/index.ts +67 -0
  82. package/jest.config.ts +9 -0
  83. package/log/.ba8901062aebb86bf525b42c65ff84f9485419e4-audit.json +20 -0
  84. package/log/wan-ton-sdk.out.2025-04-21 +0 -0
  85. package/log/wan-ton-sdk.out.2025-04-30 +10 -0
  86. package/opcodes.ts +58 -0
  87. package/package.json +34 -0
  88. package/publish.sh +78 -0
  89. package/sign/buildHash.ts +47 -0
  90. package/sign/log/.ba8901062aebb86bf525b42c65ff84f9485419e4-audit.json +15 -0
  91. package/sign/log/wan-ton-sdk.out.2025-04-14 +3 -0
  92. package/sign/rawTrans.spec.ts +117 -0
  93. package/sign/rawTrans.ts +122 -0
  94. package/sign/tools-secp256k1.js +210 -0
  95. package/testData/JettonMinter.compile.func.ts +8 -0
  96. package/testData/JettonWallet.compile.func.ts +8 -0
  97. package/testData/addressList.json +6 -0
  98. package/testData/bridge.compile.func.ts +8 -0
  99. package/testData/bridge.compiled.json +1 -0
  100. package/testData/contractAddress.json +7 -0
  101. package/testData/jettonTokenInfo.json +14 -0
  102. package/testData/prvlist.json +6 -0
  103. package/testData/smg.json +5 -0
  104. package/testData/tokenInfo.json +23 -0
  105. package/transResult/transResult.ts +621 -0
  106. package/tsconfig.json +19 -0
  107. package/utils/.compiled.json +1 -0
  108. package/utils/compileContract.ts +60 -0
  109. package/utils/log/.ba8901062aebb86bf525b42c65ff84f9485419e4-audit.json +15 -0
  110. package/utils/log/wan-ton-sdk.out.2025-01-08 +0 -0
  111. package/utils/logger.spec.ts +14 -0
  112. package/utils/logger.ts +96 -0
  113. package/utils/utils.spec.ts +21 -0
  114. package/utils/utils.ts +295 -0
  115. package/wallet/balance.ts +29 -0
  116. package/wallet/jetton.spec.ts +27 -0
  117. package/wallet/jetton.ts +159 -0
  118. package/wallet/walletContract.spec.ts +111 -0
  119. package/wallet/walletContract.ts +105 -0
package/client/1.json ADDED
@@ -0,0 +1,1730 @@
1
+ {
2
+ "transactions": [
3
+ {
4
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
5
+ "hash": "xqgVzfYR8pMW7gS0IVPmq1C95Aoxbqd43N0m09CV+WU=",
6
+ "lt": "34002954000001",
7
+ "now": 1745817164,
8
+ "mc_block_seqno": 30594837,
9
+ "trace_id": "5n6yxD6OhLx6wKMAcFKwylQl2g6MKxIbhKNBHzwTiRg=",
10
+ "prev_trans_hash": "B1k5H6eGYeaD4h24NKcViLkCDwrQSkkMU1ROY0nvTQk=",
11
+ "prev_trans_lt": "33891688000001",
12
+ "orig_status": "active",
13
+ "end_status": "active",
14
+ "total_fees": "7836369",
15
+ "total_fees_extra_currencies": {},
16
+ "description": {
17
+ "type": "ord",
18
+ "aborted": false,
19
+ "destroyed": false,
20
+ "credit_first": true,
21
+ "storage_ph": {
22
+ "storage_fees_collected": "716238",
23
+ "status_change": "unchanged"
24
+ },
25
+ "credit_ph": {
26
+ "credit": "50000000"
27
+ },
28
+ "compute_ph": {
29
+ "skipped": false,
30
+ "success": true,
31
+ "msg_state_used": false,
32
+ "account_activated": false,
33
+ "gas_fees": "6986800",
34
+ "gas_used": "17467",
35
+ "gas_limit": "125000",
36
+ "mode": 0,
37
+ "exit_code": 0,
38
+ "vm_steps": 334,
39
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
40
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
41
+ },
42
+ "action": {
43
+ "success": true,
44
+ "valid": true,
45
+ "no_funds": false,
46
+ "status_change": "unchanged",
47
+ "total_fwd_fees": "400000",
48
+ "total_action_fees": "133331",
49
+ "result_code": 0,
50
+ "tot_actions": 1,
51
+ "spec_actions": 0,
52
+ "skipped_actions": 0,
53
+ "msgs_created": 1,
54
+ "action_list_hash": "jUGKfFE/VjGbkWtZ6ZXNfzfpzA7D0VYpF5qOtEEY4RU=",
55
+ "tot_msg_size": {
56
+ "cells": "1",
57
+ "bits": "801"
58
+ }
59
+ }
60
+ },
61
+ "block_ref": {
62
+ "workchain": 0,
63
+ "shard": "E000000000000000",
64
+ "seqno": 32423230
65
+ },
66
+ "in_msg": {
67
+ "hash": "nYrGwBp/npqvw51PsId/PzQU4E1elZmGPVgx7IvY0/0=",
68
+ "source": "0:93EEB31CEFB29C3DC88E97157E75F85858AED18AC07B94401D1B37B67F4FAF50",
69
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
70
+ "value": "50000000",
71
+ "value_extra_currencies": {},
72
+ "fwd_fee": "557871",
73
+ "ihr_fee": "0",
74
+ "created_lt": "34002952000002",
75
+ "created_at": "1745817156",
76
+ "opcode": "0x60000002",
77
+ "ihr_disabled": true,
78
+ "bounce": false,
79
+ "bounced": false,
80
+ "import_fee": null,
81
+ "message_content": {
82
+ "hash": "GNPIEWRObLHQRwm87GXlo+GTH23UUxxiaEtaa7OeDuo=",
83
+ "body": "te6cckEBAQEAfgAA+GAAAAIAAAAAJkvqXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZXZfMjMwImy1PF3rzyrynfSfCLcLnTE4ZZZIBC7OtEJIamX22ujFDfPBxA1enU0UYeDeYF5eZUoXupxsrA3XZ+Id5ci1nQAAAABoEaBAAAAAAGga2sDr1SAs",
84
+ "decoded": null
85
+ },
86
+ "init_state": null
87
+ },
88
+ "out_msgs": [
89
+ {
90
+ "hash": "Z/x4/mNJmH1vhMLXVJyc4UIZZDxOWtf7yZvo6WXvLl4=",
91
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
92
+ "destination": "0:93EEB31CEFB29C3DC88E97157E75F85858AED18AC07B94401D1B37B67F4FAF50",
93
+ "value": "42613200",
94
+ "value_extra_currencies": {},
95
+ "fwd_fee": "266669",
96
+ "ihr_fee": "0",
97
+ "created_lt": "34002954000002",
98
+ "created_at": "1745817164",
99
+ "opcode": "0x2000000f",
100
+ "ihr_disabled": true,
101
+ "bounce": true,
102
+ "bounced": false,
103
+ "import_fee": null,
104
+ "message_content": {
105
+ "hash": "kYZ0tJIwAmgVwMM4vgrIII6CXRfCuIhjUtjsgSSVb28=",
106
+ "body": "te6cckEBAQEADgAAGCAAAA8AAAAAJkvqXeAxBIg=",
107
+ "decoded": null
108
+ },
109
+ "init_state": null
110
+ }
111
+ ],
112
+ "account_state_before": {
113
+ "hash": "3R1mg0g0vnFFToJMwNLJfhH2ehBp5And89Lp5vGRerM=",
114
+ "balance": "11469059004",
115
+ "extra_currencies": {},
116
+ "account_status": "active",
117
+ "frozen_hash": null,
118
+ "data_hash": "fcZxvtLwP8UB1oDof1o/Zk9GPgHvoq1o4Njn0ruOj6g=",
119
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
120
+ },
121
+ "account_state_after": {
122
+ "hash": "/NeygqcQ8l9NOuC7jCvhKM93nMdvd5IL56av/UBCGvc=",
123
+ "balance": "11468342766",
124
+ "extra_currencies": {},
125
+ "account_status": "active",
126
+ "frozen_hash": null,
127
+ "data_hash": "hBY5zXpNwMIUg8aNRl6qwmydncUvNU10mS3s5tqWm+Q=",
128
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
129
+ },
130
+ "emulated": false
131
+ },
132
+ {
133
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
134
+ "hash": "B1k5H6eGYeaD4h24NKcViLkCDwrQSkkMU1ROY0nvTQk=",
135
+ "lt": "33891688000001",
136
+ "now": 1745552659,
137
+ "mc_block_seqno": 30492097,
138
+ "trace_id": "u2wG/f6tyP81syTjh+OuxF2ePrHc/DxYvMCwSHlUpMQ=",
139
+ "prev_trans_hash": "cGJmLXjWy4r/iZfqfHpJM9hlYe253wnE7GUJI/nCRzI=",
140
+ "prev_trans_lt": "33891681000003",
141
+ "orig_status": "active",
142
+ "end_status": "active",
143
+ "total_fees": "9409114",
144
+ "total_fees_extra_currencies": {},
145
+ "description": {
146
+ "type": "ord",
147
+ "aborted": false,
148
+ "destroyed": false,
149
+ "credit_first": false,
150
+ "storage_ph": {
151
+ "storage_fees_collected": "52",
152
+ "status_change": "unchanged"
153
+ },
154
+ "credit_ph": {
155
+ "credit": "1100000000"
156
+ },
157
+ "compute_ph": {
158
+ "skipped": false,
159
+ "success": true,
160
+ "msg_state_used": false,
161
+ "account_activated": false,
162
+ "gas_fees": "9142400",
163
+ "gas_used": "22856",
164
+ "gas_limit": "1000000",
165
+ "mode": 0,
166
+ "exit_code": 0,
167
+ "vm_steps": 475,
168
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
169
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
170
+ },
171
+ "action": {
172
+ "success": true,
173
+ "valid": true,
174
+ "no_funds": false,
175
+ "status_change": "unchanged",
176
+ "total_fwd_fees": "800000",
177
+ "total_action_fees": "266662",
178
+ "result_code": 0,
179
+ "tot_actions": 2,
180
+ "spec_actions": 0,
181
+ "skipped_actions": 0,
182
+ "msgs_created": 2,
183
+ "action_list_hash": "d4HVUeEW1HHt9zhtaayRoT+LGflui3NCVwaXNgMEYkI=",
184
+ "tot_msg_size": {
185
+ "cells": "2",
186
+ "bits": "1498"
187
+ }
188
+ }
189
+ },
190
+ "block_ref": {
191
+ "workchain": 0,
192
+ "shard": "E000000000000000",
193
+ "seqno": 32319159
194
+ },
195
+ "in_msg": {
196
+ "hash": "nRFzCvq38C4m4VrIwUasYJCcVTYFovPKsROULiZtW+c=",
197
+ "source": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
198
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
199
+ "value": "1100000000",
200
+ "value_extra_currencies": {},
201
+ "fwd_fee": "872540",
202
+ "ihr_fee": "0",
203
+ "created_lt": "33891685000002",
204
+ "created_at": "1745552650",
205
+ "opcode": "0x40000001",
206
+ "ihr_disabled": true,
207
+ "bounce": true,
208
+ "bounced": false,
209
+ "import_fee": null,
210
+ "message_content": {
211
+ "hash": "DwpvBbO/tW+QAj1/NcjgONBuQecZh5OWAPNOiKr8p0s=",
212
+ "body": "te6cckECAwEAAQAAAqJAAAABAAAAAHa9elsAAAAAAAAAAAAAAAAAAAAAAAAAAAB0ZXN0bmV0XzA2OAAAA6sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfXhAAABAgDJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAg4ABefshy3mAid0dvuYcBYTQj718G56nVkscDzTvFFPmpMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAExLQEBt+VT4=",
213
+ "decoded": null
214
+ },
215
+ "init_state": null
216
+ },
217
+ "out_msgs": [
218
+ {
219
+ "hash": "VPOJnhLLWIVGO7p/7IeF7wRk1/E3YkjZl8qp/ELsq+4=",
220
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
221
+ "destination": "0:800558EC42799110B30AEAF8F019B60D4731D7A1377686F497EAFFD5995AEB24",
222
+ "value": "10000000",
223
+ "value_extra_currencies": {},
224
+ "fwd_fee": "266669",
225
+ "ihr_fee": "0",
226
+ "created_lt": "33891688000002",
227
+ "created_at": "1745552659",
228
+ "opcode": null,
229
+ "ihr_disabled": true,
230
+ "bounce": false,
231
+ "bounced": false,
232
+ "import_fee": null,
233
+ "message_content": {
234
+ "hash": "lqKW0iTyhcZ77pPDD4owkVfw2qNdxbh+QQt4YwoJz8c=",
235
+ "body": "te6cckEBAQEAAgAAAEysuc0=",
236
+ "decoded": null
237
+ },
238
+ "init_state": null
239
+ },
240
+ {
241
+ "hash": "e/ZDoCQQ6VpWt0Q290m7szUNoscXzZaelc7p+mc2uIA=",
242
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
243
+ "destination": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
244
+ "value": "990000000",
245
+ "value_extra_currencies": {},
246
+ "fwd_fee": "266669",
247
+ "ihr_fee": "0",
248
+ "created_lt": "33891688000003",
249
+ "created_at": "1745552659",
250
+ "opcode": "0x2000000f",
251
+ "ihr_disabled": true,
252
+ "bounce": true,
253
+ "bounced": false,
254
+ "import_fee": null,
255
+ "message_content": {
256
+ "hash": "eHT/Mdtoj7E5OfdLzwKp77MM8kMHKfeb7uFvaN92y38=",
257
+ "body": "te6cckEBAQEADgAAGCAAAA8AAAAAdr16W7m0dCQ=",
258
+ "decoded": null
259
+ },
260
+ "init_state": null
261
+ }
262
+ ],
263
+ "account_state_before": {
264
+ "hash": "QiN3B9lA4RQg0gOvpadw29Epe9xsLAluKU0icGvduyU=",
265
+ "balance": "11379001456",
266
+ "extra_currencies": {},
267
+ "account_status": "active",
268
+ "frozen_hash": null,
269
+ "data_hash": "fcZxvtLwP8UB1oDof1o/Zk9GPgHvoq1o4Njn0ruOj6g=",
270
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
271
+ },
272
+ "account_state_after": {
273
+ "hash": "3R1mg0g0vnFFToJMwNLJfhH2ehBp5And89Lp5vGRerM=",
274
+ "balance": "11469059004",
275
+ "extra_currencies": {},
276
+ "account_status": "active",
277
+ "frozen_hash": null,
278
+ "data_hash": "fcZxvtLwP8UB1oDof1o/Zk9GPgHvoq1o4Njn0ruOj6g=",
279
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
280
+ },
281
+ "emulated": false
282
+ },
283
+ {
284
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
285
+ "hash": "cGJmLXjWy4r/iZfqfHpJM9hlYe253wnE7GUJI/nCRzI=",
286
+ "lt": "33891681000003",
287
+ "now": 1745552640,
288
+ "mc_block_seqno": 30492089,
289
+ "trace_id": "uQpRFE0ny8TgyVWcfgZ/h7qqpLpbv+7qF9jyV65Htas=",
290
+ "prev_trans_hash": "MEAV6MYeP716FoV++x+4W7P6kZVTE9DsmgHvcrVgyWY=",
291
+ "prev_trans_lt": "33891681000001",
292
+ "orig_status": "active",
293
+ "end_status": "active",
294
+ "total_fees": "9913062",
295
+ "total_fees_extra_currencies": {},
296
+ "description": {
297
+ "type": "ord",
298
+ "aborted": false,
299
+ "destroyed": false,
300
+ "credit_first": false,
301
+ "storage_ph": {
302
+ "storage_fees_collected": "0",
303
+ "status_change": "unchanged"
304
+ },
305
+ "credit_ph": {
306
+ "credit": "804548000"
307
+ },
308
+ "compute_ph": {
309
+ "skipped": false,
310
+ "success": true,
311
+ "msg_state_used": false,
312
+ "account_activated": false,
313
+ "gas_fees": "9646400",
314
+ "gas_used": "24116",
315
+ "gas_limit": "1000000",
316
+ "mode": 0,
317
+ "exit_code": 0,
318
+ "vm_steps": 492,
319
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
320
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
321
+ },
322
+ "action": {
323
+ "success": true,
324
+ "valid": true,
325
+ "no_funds": false,
326
+ "status_change": "unchanged",
327
+ "total_fwd_fees": "800000",
328
+ "total_action_fees": "266662",
329
+ "result_code": 0,
330
+ "tot_actions": 2,
331
+ "spec_actions": 0,
332
+ "skipped_actions": 0,
333
+ "msgs_created": 2,
334
+ "action_list_hash": "XVACOewETqLcdKYY0bA6HPu/IVlg1yYbRM2eGSe/N4w=",
335
+ "tot_msg_size": {
336
+ "cells": "2",
337
+ "bits": "1498"
338
+ }
339
+ }
340
+ },
341
+ "block_ref": {
342
+ "workchain": 0,
343
+ "shard": "E000000000000000",
344
+ "seqno": 32319152
345
+ },
346
+ "in_msg": {
347
+ "hash": "QKNJxMhafYsQtznB1pOgfUFVgYYTmUqOlF0x9y8Lkng=",
348
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
349
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
350
+ "value": "804548000",
351
+ "value_extra_currencies": {},
352
+ "fwd_fee": "915207",
353
+ "ihr_fee": "0",
354
+ "created_lt": "33891681000002",
355
+ "created_at": "1745552640",
356
+ "opcode": "0x40000001",
357
+ "ihr_disabled": true,
358
+ "bounce": true,
359
+ "bounced": false,
360
+ "import_fee": null,
361
+ "message_content": {
362
+ "hash": "z4h9S0O4qCoBArRI3TM8tBBPtuuxoU/mra/eL7kSFMA=",
363
+ "body": "te6cckECAwEAARQAAspAAAABAAAAAHh/ehEAAAAAAAAAAAAAAAAAAAAAAAAAAAB0ZXN0bmV0XzA2OAAAA60AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfXhABT26zy0sYfTIBr7+Wo45iNnMlsp+QECAMmAD2Yl+OeIipl23bIhK3BPuXwMgb+9VQ9f+HvHf0HeP6dwA8JajBDUHp8YBSLa2H6Y3ZPvOfD24i7E1v9V5Ze9/DLmAE+vwqZRfGEiEGbqwlBT8TdCSYv9EBg4ejyQMftw6UJWQACDgAF5+yHLeYCJ3R2+5hwFhNCPvXwbnqdWSxwPNO8UU+akwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATEtAQS+zCOA==",
364
+ "decoded": null
365
+ },
366
+ "init_state": null
367
+ },
368
+ "out_msgs": [
369
+ {
370
+ "hash": "vdyYZyE5FY965NL/4PpRMJ1rcfa22ZREWxXuV0MEy/k=",
371
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
372
+ "destination": "0:800558EC42799110B30AEAF8F019B60D4731D7A1377686F497EAFFD5995AEB24",
373
+ "value": "10000000",
374
+ "value_extra_currencies": {},
375
+ "fwd_fee": "266669",
376
+ "ihr_fee": "0",
377
+ "created_lt": "33891681000004",
378
+ "created_at": "1745552640",
379
+ "opcode": null,
380
+ "ihr_disabled": true,
381
+ "bounce": false,
382
+ "bounced": false,
383
+ "import_fee": null,
384
+ "message_content": {
385
+ "hash": "lqKW0iTyhcZ77pPDD4owkVfw2qNdxbh+QQt4YwoJz8c=",
386
+ "body": "te6cckEBAQEAAgAAAEysuc0=",
387
+ "decoded": null
388
+ },
389
+ "init_state": null
390
+ },
391
+ {
392
+ "hash": "jQw4FhXpnQqRZQS+PXnmSV1J0cU+Pb2pLgWi0ggBtsY=",
393
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
394
+ "destination": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
395
+ "value": "794548000",
396
+ "value_extra_currencies": {},
397
+ "fwd_fee": "266669",
398
+ "ihr_fee": "0",
399
+ "created_lt": "33891681000005",
400
+ "created_at": "1745552640",
401
+ "opcode": "0x2000000f",
402
+ "ihr_disabled": true,
403
+ "bounce": true,
404
+ "bounced": false,
405
+ "import_fee": null,
406
+ "message_content": {
407
+ "hash": "qgj1oRmO1F26Cn9LF3tMT8MI1Hy93Ot706NpqxSXhz0=",
408
+ "body": "te6cckEBAQEADgAAGCAAAA8AAAAAeH96ET5VwT8=",
409
+ "decoded": null
410
+ },
411
+ "init_state": null
412
+ }
413
+ ],
414
+ "account_state_before": {
415
+ "hash": "ypM/wcjroE3l0i4irhbhRHjU84nBrlK4tTgOn5km2s0=",
416
+ "balance": null,
417
+ "extra_currencies": null,
418
+ "account_status": null,
419
+ "frozen_hash": null,
420
+ "data_hash": null,
421
+ "code_hash": null
422
+ },
423
+ "account_state_after": {
424
+ "hash": "QiN3B9lA4RQg0gOvpadw29Epe9xsLAluKU0icGvduyU=",
425
+ "balance": "11379001456",
426
+ "extra_currencies": {},
427
+ "account_status": "active",
428
+ "frozen_hash": null,
429
+ "data_hash": "fcZxvtLwP8UB1oDof1o/Zk9GPgHvoq1o4Njn0ruOj6g=",
430
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
431
+ },
432
+ "emulated": false
433
+ },
434
+ {
435
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
436
+ "hash": "MEAV6MYeP716FoV++x+4W7P6kZVTE9DsmgHvcrVgyWY=",
437
+ "lt": "33891681000001",
438
+ "now": 1745552640,
439
+ "mc_block_seqno": 30492089,
440
+ "trace_id": "uQpRFE0ny8TgyVWcfgZ/h7qqpLpbv+7qF9jyV65Htas=",
441
+ "prev_trans_hash": "fRuNOfLw846ezqt7cNt4rUN/BXXRHfus+knX1swVRIU=",
442
+ "prev_trans_lt": "33891656000003",
443
+ "orig_status": "active",
444
+ "end_status": "active",
445
+ "total_fees": "4536945",
446
+ "total_fees_extra_currencies": {},
447
+ "description": {
448
+ "type": "ord",
449
+ "aborted": false,
450
+ "destroyed": false,
451
+ "credit_first": true,
452
+ "storage_ph": {
453
+ "storage_fees_collected": "152",
454
+ "status_change": "unchanged"
455
+ },
456
+ "credit_ph": {
457
+ "credit": "810000000"
458
+ },
459
+ "compute_ph": {
460
+ "skipped": false,
461
+ "success": true,
462
+ "msg_state_used": false,
463
+ "account_activated": false,
464
+ "gas_fees": "4079200",
465
+ "gas_used": "10198",
466
+ "gas_limit": "1000000",
467
+ "mode": 0,
468
+ "exit_code": 0,
469
+ "vm_steps": 216,
470
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
471
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
472
+ },
473
+ "action": {
474
+ "success": true,
475
+ "valid": true,
476
+ "no_funds": false,
477
+ "status_change": "unchanged",
478
+ "total_fwd_fees": "1372800",
479
+ "total_action_fees": "457593",
480
+ "result_code": 0,
481
+ "tot_actions": 1,
482
+ "spec_actions": 0,
483
+ "skipped_actions": 0,
484
+ "msgs_created": 1,
485
+ "action_list_hash": "nHkytGVyYXcHpRFNLVJGvnVLJBSAU/1NQnT6T1Mk+U0=",
486
+ "tot_msg_size": {
487
+ "cells": "4",
488
+ "bits": "2837"
489
+ }
490
+ }
491
+ },
492
+ "block_ref": {
493
+ "workchain": 0,
494
+ "shard": "E000000000000000",
495
+ "seqno": 32319152
496
+ },
497
+ "in_msg": {
498
+ "hash": "VRxYWTLirbDd5sDCxc24Q0V/CTVnNWA0doH4/EivrOI=",
499
+ "source": "0:9F5F854CA2F8C24420CDD584A0A7E26E849317FA203070F4792063F6E1D284AC",
500
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
501
+ "value": "810000000",
502
+ "value_extra_currencies": {},
503
+ "fwd_fee": "1048542",
504
+ "ihr_fee": "0",
505
+ "created_lt": "33891677000002",
506
+ "created_at": "1745552633",
507
+ "opcode": "0x7362d09c",
508
+ "ihr_disabled": true,
509
+ "bounce": false,
510
+ "bounced": false,
511
+ "import_fee": null,
512
+ "message_content": {
513
+ "hash": "1waCC0HgzJHm/b8sh72ORBOHDZK3FMNukLe8ADnrJcw=",
514
+ "body": "te6cckECBAEAAUkAAWRzYtCcAAAAAHh/ehFAX14QCAAXn7Ict5gIndHb7mHAWE0I+9fBuep1ZLHA807xRT5qTQECykAAAAEAAAAAeH96EQAAAAAAAAAAAAAAAAAAAAAAAAAAAHRlc3RuZXRfMDY4AAADrQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF9eEAFPbrPLSxh9MgGvv5ajjmI2cyWyn5AgMAyYAPZiX454iKmXbdsiErcE+5fAyBv71VD1/4e8d/Qd4/p3ADwlqMENQenxgFItrYfpjdk+858PbiLsTW/1Xll738MuYAT6/CplF8YSIQZurCUFPxN0JJi/0QGDh6PJAx+3DpQlZAAIOAAXn7Ict5gIndHb7mHAWE0I+9fBuep1ZLHA807xRT5qTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMS0BCO79Ge",
515
+ "decoded": null
516
+ },
517
+ "init_state": null
518
+ },
519
+ "out_msgs": [
520
+ {
521
+ "hash": "QKNJxMhafYsQtznB1pOgfUFVgYYTmUqOlF0x9y8Lkng=",
522
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
523
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
524
+ "value": "804548000",
525
+ "value_extra_currencies": {},
526
+ "fwd_fee": "915207",
527
+ "ihr_fee": "0",
528
+ "created_lt": "33891681000002",
529
+ "created_at": "1745552640",
530
+ "opcode": "0x40000001",
531
+ "ihr_disabled": true,
532
+ "bounce": true,
533
+ "bounced": false,
534
+ "import_fee": null,
535
+ "message_content": {
536
+ "hash": "z4h9S0O4qCoBArRI3TM8tBBPtuuxoU/mra/eL7kSFMA=",
537
+ "body": "te6cckECAwEAARQAAspAAAABAAAAAHh/ehEAAAAAAAAAAAAAAAAAAAAAAAAAAAB0ZXN0bmV0XzA2OAAAA60AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfXhABT26zy0sYfTIBr7+Wo45iNnMlsp+QECAMmAD2Yl+OeIipl23bIhK3BPuXwMgb+9VQ9f+HvHf0HeP6dwA8JajBDUHp8YBSLa2H6Y3ZPvOfD24i7E1v9V5Ze9/DLmAE+vwqZRfGEiEGbqwlBT8TdCSYv9EBg4ejyQMftw6UJWQACDgAF5+yHLeYCJ3R2+5hwFhNCPvXwbnqdWSxwPNO8UU+akwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATEtAQS+zCOA==",
538
+ "decoded": null
539
+ },
540
+ "init_state": null
541
+ }
542
+ ],
543
+ "account_state_before": {
544
+ "hash": "8QA6TcaHTZCfn+OxCPl6bwuOFUozUBtv9mlsWYG6G5M=",
545
+ "balance": "11389448008",
546
+ "extra_currencies": {},
547
+ "account_status": "active",
548
+ "frozen_hash": null,
549
+ "data_hash": "fcZxvtLwP8UB1oDof1o/Zk9GPgHvoq1o4Njn0ruOj6g=",
550
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
551
+ },
552
+ "account_state_after": {
553
+ "hash": "ypM/wcjroE3l0i4irhbhRHjU84nBrlK4tTgOn5km2s0=",
554
+ "balance": null,
555
+ "extra_currencies": null,
556
+ "account_status": null,
557
+ "frozen_hash": null,
558
+ "data_hash": null,
559
+ "code_hash": null
560
+ },
561
+ "emulated": false
562
+ },
563
+ {
564
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
565
+ "hash": "fRuNOfLw846ezqt7cNt4rUN/BXXRHfus+knX1swVRIU=",
566
+ "lt": "33891656000003",
567
+ "now": 1745552584,
568
+ "mc_block_seqno": 30492068,
569
+ "trace_id": "R13btcb2eKQ1R8B5RA3yQvoqL2iQG0mfrv+4bTdcVGo=",
570
+ "prev_trans_hash": "qRY4rDRTWaWMWrWHzFTjqHEKHdSoV3H99dfkCKFmrH0=",
571
+ "prev_trans_lt": "33891656000001",
572
+ "orig_status": "active",
573
+ "end_status": "active",
574
+ "total_fees": "9913062",
575
+ "total_fees_extra_currencies": {},
576
+ "description": {
577
+ "type": "ord",
578
+ "aborted": false,
579
+ "destroyed": false,
580
+ "credit_first": false,
581
+ "storage_ph": {
582
+ "storage_fees_collected": "0",
583
+ "status_change": "unchanged"
584
+ },
585
+ "credit_ph": {
586
+ "credit": "804548000"
587
+ },
588
+ "compute_ph": {
589
+ "skipped": false,
590
+ "success": true,
591
+ "msg_state_used": false,
592
+ "account_activated": false,
593
+ "gas_fees": "9646400",
594
+ "gas_used": "24116",
595
+ "gas_limit": "1000000",
596
+ "mode": 0,
597
+ "exit_code": 0,
598
+ "vm_steps": 492,
599
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
600
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
601
+ },
602
+ "action": {
603
+ "success": true,
604
+ "valid": true,
605
+ "no_funds": false,
606
+ "status_change": "unchanged",
607
+ "total_fwd_fees": "800000",
608
+ "total_action_fees": "266662",
609
+ "result_code": 0,
610
+ "tot_actions": 2,
611
+ "spec_actions": 0,
612
+ "skipped_actions": 0,
613
+ "msgs_created": 2,
614
+ "action_list_hash": "iN9fJcx/4V10aOcj5RprYjDrVnwHPRS4Z0bcsRx/JGU=",
615
+ "tot_msg_size": {
616
+ "cells": "2",
617
+ "bits": "1498"
618
+ }
619
+ }
620
+ },
621
+ "block_ref": {
622
+ "workchain": 0,
623
+ "shard": "E000000000000000",
624
+ "seqno": 32319129
625
+ },
626
+ "in_msg": {
627
+ "hash": "ZvUTJvVnEYJ6IvfToMVJLQzh1oT0wXMD+bApWwkADx0=",
628
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
629
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
630
+ "value": "804548000",
631
+ "value_extra_currencies": {},
632
+ "fwd_fee": "915207",
633
+ "ihr_fee": "0",
634
+ "created_lt": "33891656000002",
635
+ "created_at": "1745552584",
636
+ "opcode": "0x40000001",
637
+ "ihr_disabled": true,
638
+ "bounce": true,
639
+ "bounced": false,
640
+ "import_fee": null,
641
+ "message_content": {
642
+ "hash": "t9AePm4dRkNkOTWgsu1UaZzQN0SADFTpE+otfCEy3tw=",
643
+ "body": "te6cckECAwEAARQAAspAAAABAAAAABoatZEAAAAAAAAAAAAAAAAAAAAAAAAAAAB0ZXN0bmV0XzA2OAAAA6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfXhABT26zy0sYfTIBr7+Wo45iNnMlsp+QECAMmAGeLRkIo7dX3B65pObP5WMvp4m86jZe5+1FJpPRCLP5fwAKIbjaPzXBrE2HRfXUMHfiWytIKl27pStTLdUsrZ3aX2AAcIKdvgwcCO2vX1uiaJywpyJWHheGQYPdxPgIdpLuUXwACDgAF5+yHLeYCJ3R2+5hwFhNCPvXwbnqdWSxwPNO8UU+akwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATEtAQQGDzDQ==",
644
+ "decoded": null
645
+ },
646
+ "init_state": null
647
+ },
648
+ "out_msgs": [
649
+ {
650
+ "hash": "gPpPLCaaHFPNzR6/fjRYZVtRX4dPcYEZX4j7enggGn4=",
651
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
652
+ "destination": "0:800558EC42799110B30AEAF8F019B60D4731D7A1377686F497EAFFD5995AEB24",
653
+ "value": "10000000",
654
+ "value_extra_currencies": {},
655
+ "fwd_fee": "266669",
656
+ "ihr_fee": "0",
657
+ "created_lt": "33891656000004",
658
+ "created_at": "1745552584",
659
+ "opcode": null,
660
+ "ihr_disabled": true,
661
+ "bounce": false,
662
+ "bounced": false,
663
+ "import_fee": null,
664
+ "message_content": {
665
+ "hash": "lqKW0iTyhcZ77pPDD4owkVfw2qNdxbh+QQt4YwoJz8c=",
666
+ "body": "te6cckEBAQEAAgAAAEysuc0=",
667
+ "decoded": null
668
+ },
669
+ "init_state": null
670
+ },
671
+ {
672
+ "hash": "sGCWC9n4Gd7RjKwIWio1Ln6t093NFz5w3I1gqCH09QQ=",
673
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
674
+ "destination": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
675
+ "value": "794548000",
676
+ "value_extra_currencies": {},
677
+ "fwd_fee": "266669",
678
+ "ihr_fee": "0",
679
+ "created_lt": "33891656000005",
680
+ "created_at": "1745552584",
681
+ "opcode": "0x2000000f",
682
+ "ihr_disabled": true,
683
+ "bounce": true,
684
+ "bounced": false,
685
+ "import_fee": null,
686
+ "message_content": {
687
+ "hash": "EUFv5c7fhlok/z33AA3z3DnhnIdmiX7wKKbSjdfHjCY=",
688
+ "body": "te6cckEBAQEADgAAGCAAAA8AAAAAGhq1kQJ9wIA=",
689
+ "decoded": null
690
+ },
691
+ "init_state": null
692
+ }
693
+ ],
694
+ "account_state_before": {
695
+ "hash": "sqxcsqvaDtyG0dQPM+x3usIHF6p+9OO1BQbyN3i+MQ8=",
696
+ "balance": null,
697
+ "extra_currencies": null,
698
+ "account_status": null,
699
+ "frozen_hash": null,
700
+ "data_hash": null,
701
+ "code_hash": null
702
+ },
703
+ "account_state_after": {
704
+ "hash": "8QA6TcaHTZCfn+OxCPl6bwuOFUozUBtv9mlsWYG6G5M=",
705
+ "balance": "11389448008",
706
+ "extra_currencies": {},
707
+ "account_status": "active",
708
+ "frozen_hash": null,
709
+ "data_hash": "fcZxvtLwP8UB1oDof1o/Zk9GPgHvoq1o4Njn0ruOj6g=",
710
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
711
+ },
712
+ "emulated": false
713
+ },
714
+ {
715
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
716
+ "hash": "qRY4rDRTWaWMWrWHzFTjqHEKHdSoV3H99dfkCKFmrH0=",
717
+ "lt": "33891656000001",
718
+ "now": 1745552584,
719
+ "mc_block_seqno": 30492068,
720
+ "trace_id": "R13btcb2eKQ1R8B5RA3yQvoqL2iQG0mfrv+4bTdcVGo=",
721
+ "prev_trans_hash": "yY/9mHVW4JNUMtSZXXmzQWmh0IROqEVn4bBMnyiM+BA=",
722
+ "prev_trans_lt": "33819840000003",
723
+ "orig_status": "active",
724
+ "end_status": "active",
725
+ "total_fees": "4998886",
726
+ "total_fees_extra_currencies": {},
727
+ "description": {
728
+ "type": "ord",
729
+ "aborted": false,
730
+ "destroyed": false,
731
+ "credit_first": true,
732
+ "storage_ph": {
733
+ "storage_fees_collected": "462093",
734
+ "status_change": "unchanged"
735
+ },
736
+ "credit_ph": {
737
+ "credit": "810000000"
738
+ },
739
+ "compute_ph": {
740
+ "skipped": false,
741
+ "success": true,
742
+ "msg_state_used": false,
743
+ "account_activated": false,
744
+ "gas_fees": "4079200",
745
+ "gas_used": "10198",
746
+ "gas_limit": "1000000",
747
+ "mode": 0,
748
+ "exit_code": 0,
749
+ "vm_steps": 216,
750
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
751
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
752
+ },
753
+ "action": {
754
+ "success": true,
755
+ "valid": true,
756
+ "no_funds": false,
757
+ "status_change": "unchanged",
758
+ "total_fwd_fees": "1372800",
759
+ "total_action_fees": "457593",
760
+ "result_code": 0,
761
+ "tot_actions": 1,
762
+ "spec_actions": 0,
763
+ "skipped_actions": 0,
764
+ "msgs_created": 1,
765
+ "action_list_hash": "mxNuVa+3tcPTA/G4qriewSv1JEawawNATI0xkYyO2ys=",
766
+ "tot_msg_size": {
767
+ "cells": "4",
768
+ "bits": "2837"
769
+ }
770
+ }
771
+ },
772
+ "block_ref": {
773
+ "workchain": 0,
774
+ "shard": "E000000000000000",
775
+ "seqno": 32319129
776
+ },
777
+ "in_msg": {
778
+ "hash": "QawszngP4D/UeNiBmdMQ/6whYgjkaL0fwbghBzFxaZo=",
779
+ "source": "0:0E1053B7C183811DB5EBEB744D139614E44AC3C2F0C8307BB89F010ED25DCA2F",
780
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
781
+ "value": "810000000",
782
+ "value_extra_currencies": {},
783
+ "fwd_fee": "1048542",
784
+ "ihr_fee": "0",
785
+ "created_lt": "33891653000006",
786
+ "created_at": "1745552574",
787
+ "opcode": "0x7362d09c",
788
+ "ihr_disabled": true,
789
+ "bounce": false,
790
+ "bounced": false,
791
+ "import_fee": null,
792
+ "message_content": {
793
+ "hash": "7FSDBdhGQZTvAj0JK+ZW+q6mRq8pi6mTSntwaiKR/p4=",
794
+ "body": "te6cckECBAEAAUkAAWRzYtCcAAAAABoatZFAX14QCAAXn7Ict5gIndHb7mHAWE0I+9fBuep1ZLHA807xRT5qTQECykAAAAEAAAAAGhq1kQAAAAAAAAAAAAAAAAAAAAAAAAAAAHRlc3RuZXRfMDY4AAADrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF9eEAFPbrPLSxh9MgGvv5ajjmI2cyWyn5AgMAyYAZ4tGQijt1fcHrmk5s/lYy+nibzqNl7n7UUmk9EIs/l/AAohuNo/NcGsTYdF9dQwd+JbK0gqXbulK1Mt1SytndpfYABwgp2+DBwI7a9fW6JonLCnIlYeF4ZBg93E+Ah2ku5RfAAIOAAXn7Ict5gIndHb7mHAWE0I+9fBuep1ZLHA807xRT5qTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMS0BAzvA4V",
795
+ "decoded": null
796
+ },
797
+ "init_state": null
798
+ },
799
+ "out_msgs": [
800
+ {
801
+ "hash": "ZvUTJvVnEYJ6IvfToMVJLQzh1oT0wXMD+bApWwkADx0=",
802
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
803
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
804
+ "value": "804548000",
805
+ "value_extra_currencies": {},
806
+ "fwd_fee": "915207",
807
+ "ihr_fee": "0",
808
+ "created_lt": "33891656000002",
809
+ "created_at": "1745552584",
810
+ "opcode": "0x40000001",
811
+ "ihr_disabled": true,
812
+ "bounce": true,
813
+ "bounced": false,
814
+ "import_fee": null,
815
+ "message_content": {
816
+ "hash": "t9AePm4dRkNkOTWgsu1UaZzQN0SADFTpE+otfCEy3tw=",
817
+ "body": "te6cckECAwEAARQAAspAAAABAAAAABoatZEAAAAAAAAAAAAAAAAAAAAAAAAAAAB0ZXN0bmV0XzA2OAAAA6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfXhABT26zy0sYfTIBr7+Wo45iNnMlsp+QECAMmAGeLRkIo7dX3B65pObP5WMvp4m86jZe5+1FJpPRCLP5fwAKIbjaPzXBrE2HRfXUMHfiWytIKl27pStTLdUsrZ3aX2AAcIKdvgwcCO2vX1uiaJywpyJWHheGQYPdxPgIdpLuUXwACDgAF5+yHLeYCJ3R2+5hwFhNCPvXwbnqdWSxwPNO8UU+akwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATEtAQQGDzDQ==",
818
+ "decoded": null
819
+ },
820
+ "init_state": null
821
+ }
822
+ ],
823
+ "account_state_before": {
824
+ "hash": "pxfbUUdKRIp5sT4+sC/65AatdnmKzcmMYMhojgKDYxs=",
825
+ "balance": "11400356501",
826
+ "extra_currencies": {},
827
+ "account_status": "active",
828
+ "frozen_hash": null,
829
+ "data_hash": "fcZxvtLwP8UB1oDof1o/Zk9GPgHvoq1o4Njn0ruOj6g=",
830
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
831
+ },
832
+ "account_state_after": {
833
+ "hash": "sqxcsqvaDtyG0dQPM+x3usIHF6p+9OO1BQbyN3i+MQ8=",
834
+ "balance": null,
835
+ "extra_currencies": null,
836
+ "account_status": null,
837
+ "frozen_hash": null,
838
+ "data_hash": null,
839
+ "code_hash": null
840
+ },
841
+ "emulated": false
842
+ },
843
+ {
844
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
845
+ "hash": "yY/9mHVW4JNUMtSZXXmzQWmh0IROqEVn4bBMnyiM+BA=",
846
+ "lt": "33819840000003",
847
+ "now": 1745381934,
848
+ "mc_block_seqno": 30425789,
849
+ "trace_id": "8xLkYJYaEeLROZuoJcYI5p9ib8IrT5WqTL/J58U7nyw=",
850
+ "prev_trans_hash": "ZDCCBgc/92yv/sMBgDpHH/UrTT36v1CkbALINZlC61g=",
851
+ "prev_trans_lt": "33819840000001",
852
+ "orig_status": "active",
853
+ "end_status": "active",
854
+ "total_fees": "9913062",
855
+ "total_fees_extra_currencies": {},
856
+ "description": {
857
+ "type": "ord",
858
+ "aborted": false,
859
+ "destroyed": false,
860
+ "credit_first": false,
861
+ "storage_ph": {
862
+ "storage_fees_collected": "0",
863
+ "status_change": "unchanged"
864
+ },
865
+ "credit_ph": {
866
+ "credit": "804548000"
867
+ },
868
+ "compute_ph": {
869
+ "skipped": false,
870
+ "success": true,
871
+ "msg_state_used": false,
872
+ "account_activated": false,
873
+ "gas_fees": "9646400",
874
+ "gas_used": "24116",
875
+ "gas_limit": "1000000",
876
+ "mode": 0,
877
+ "exit_code": 0,
878
+ "vm_steps": 492,
879
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
880
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
881
+ },
882
+ "action": {
883
+ "success": true,
884
+ "valid": true,
885
+ "no_funds": false,
886
+ "status_change": "unchanged",
887
+ "total_fwd_fees": "800000",
888
+ "total_action_fees": "266662",
889
+ "result_code": 0,
890
+ "tot_actions": 2,
891
+ "spec_actions": 0,
892
+ "skipped_actions": 0,
893
+ "msgs_created": 2,
894
+ "action_list_hash": "txfR7srQgMkh5CnWuKJmCxpDzmW9bAd4o697b5gQR6M=",
895
+ "tot_msg_size": {
896
+ "cells": "2",
897
+ "bits": "1498"
898
+ }
899
+ }
900
+ },
901
+ "block_ref": {
902
+ "workchain": 0,
903
+ "shard": "E000000000000000",
904
+ "seqno": 32252152
905
+ },
906
+ "in_msg": {
907
+ "hash": "nuK3CV11oYEut4A8O0eiGFMEQPS25TXhXR9Udn8kiwA=",
908
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
909
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
910
+ "value": "804548000",
911
+ "value_extra_currencies": {},
912
+ "fwd_fee": "915207",
913
+ "ihr_fee": "0",
914
+ "created_lt": "33819840000002",
915
+ "created_at": "1745381934",
916
+ "opcode": "0x40000001",
917
+ "ihr_disabled": true,
918
+ "bounce": true,
919
+ "bounced": false,
920
+ "import_fee": null,
921
+ "message_content": {
922
+ "hash": "9W/2MiPqOJh5uvc+L6wsaS7SyK75QuGMO5Yfy3OI+FU=",
923
+ "body": "te6cckECAwEAARQAAspAAAABAAAAAC16lLcAAAAAAAAAAAAAAAAAAAAAAAAAAAB0ZXN0bmV0XzA2OAAAA6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfXhABT26zy0sYfTIBr7+Wo45iNnMlsp+QECAMmAGeLRkIo7dX3B65pObP5WMvp4m86jZe5+1FJpPRCLP5fwAKIbjaPzXBrE2HRfXUMHfiWytIKl27pStTLdUsrZ3aX2AAcIKdvgwcCO2vX1uiaJywpyJWHheGQYPdxPgIdpLuUXwACDgAF5+yHLeYCJ3R2+5hwFhNCPvXwbnqdWSxwPNO8UU+akwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATEtAQ84Glew==",
924
+ "decoded": null
925
+ },
926
+ "init_state": null
927
+ },
928
+ "out_msgs": [
929
+ {
930
+ "hash": "WhQBYYueWiQevc1KT5n1s6sww1JMtDjLGiibvTuBMh4=",
931
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
932
+ "destination": "0:800558EC42799110B30AEAF8F019B60D4731D7A1377686F497EAFFD5995AEB24",
933
+ "value": "10000000",
934
+ "value_extra_currencies": {},
935
+ "fwd_fee": "266669",
936
+ "ihr_fee": "0",
937
+ "created_lt": "33819840000004",
938
+ "created_at": "1745381934",
939
+ "opcode": null,
940
+ "ihr_disabled": true,
941
+ "bounce": false,
942
+ "bounced": false,
943
+ "import_fee": null,
944
+ "message_content": {
945
+ "hash": "lqKW0iTyhcZ77pPDD4owkVfw2qNdxbh+QQt4YwoJz8c=",
946
+ "body": "te6cckEBAQEAAgAAAEysuc0=",
947
+ "decoded": null
948
+ },
949
+ "init_state": null
950
+ },
951
+ {
952
+ "hash": "DB3+wdPszKX6G+TIrlnWFm2rvqGHmhDreiA+xmGlg5I=",
953
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
954
+ "destination": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
955
+ "value": "794548000",
956
+ "value_extra_currencies": {},
957
+ "fwd_fee": "266669",
958
+ "ihr_fee": "0",
959
+ "created_lt": "33819840000005",
960
+ "created_at": "1745381934",
961
+ "opcode": "0x2000000f",
962
+ "ihr_disabled": true,
963
+ "bounce": true,
964
+ "bounced": false,
965
+ "import_fee": null,
966
+ "message_content": {
967
+ "hash": "Ja8fTPGEUC7em+UWjADQsG6QmQKNuUuBkvv8w5V5KoM=",
968
+ "body": "te6cckEBAQEADgAAGCAAAA8AAAAALXqUt/AJles=",
969
+ "decoded": null
970
+ },
971
+ "init_state": null
972
+ }
973
+ ],
974
+ "account_state_before": {
975
+ "hash": "2MHt/sLBCafZGlsC7yR4D4tFqcy4WqcqNFPRfkA3r1I=",
976
+ "balance": null,
977
+ "extra_currencies": null,
978
+ "account_status": null,
979
+ "frozen_hash": null,
980
+ "data_hash": null,
981
+ "code_hash": null
982
+ },
983
+ "account_state_after": {
984
+ "hash": "pxfbUUdKRIp5sT4+sC/65AatdnmKzcmMYMhojgKDYxs=",
985
+ "balance": "11400356501",
986
+ "extra_currencies": {},
987
+ "account_status": "active",
988
+ "frozen_hash": null,
989
+ "data_hash": "fcZxvtLwP8UB1oDof1o/Zk9GPgHvoq1o4Njn0ruOj6g=",
990
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
991
+ },
992
+ "emulated": false
993
+ },
994
+ {
995
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
996
+ "hash": "ZDCCBgc/92yv/sMBgDpHH/UrTT36v1CkbALINZlC61g=",
997
+ "lt": "33819840000001",
998
+ "now": 1745381934,
999
+ "mc_block_seqno": 30425789,
1000
+ "trace_id": "8xLkYJYaEeLROZuoJcYI5p9ib8IrT5WqTL/J58U7nyw=",
1001
+ "prev_trans_hash": "b41oRXJFyOELKeNNImZ0rNk7By+Mjx9imhtKIm36z28=",
1002
+ "prev_trans_lt": "33819381000001",
1003
+ "orig_status": "active",
1004
+ "end_status": "active",
1005
+ "total_fees": "4539745",
1006
+ "total_fees_extra_currencies": {},
1007
+ "description": {
1008
+ "type": "ord",
1009
+ "aborted": false,
1010
+ "destroyed": false,
1011
+ "credit_first": true,
1012
+ "storage_ph": {
1013
+ "storage_fees_collected": "2952",
1014
+ "status_change": "unchanged"
1015
+ },
1016
+ "credit_ph": {
1017
+ "credit": "810000000"
1018
+ },
1019
+ "compute_ph": {
1020
+ "skipped": false,
1021
+ "success": true,
1022
+ "msg_state_used": false,
1023
+ "account_activated": false,
1024
+ "gas_fees": "4079200",
1025
+ "gas_used": "10198",
1026
+ "gas_limit": "1000000",
1027
+ "mode": 0,
1028
+ "exit_code": 0,
1029
+ "vm_steps": 216,
1030
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
1031
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
1032
+ },
1033
+ "action": {
1034
+ "success": true,
1035
+ "valid": true,
1036
+ "no_funds": false,
1037
+ "status_change": "unchanged",
1038
+ "total_fwd_fees": "1372800",
1039
+ "total_action_fees": "457593",
1040
+ "result_code": 0,
1041
+ "tot_actions": 1,
1042
+ "spec_actions": 0,
1043
+ "skipped_actions": 0,
1044
+ "msgs_created": 1,
1045
+ "action_list_hash": "VtAYLl3KWm331b4DRO6IJxBvDhs+/muQRQMD7riisVY=",
1046
+ "tot_msg_size": {
1047
+ "cells": "4",
1048
+ "bits": "2837"
1049
+ }
1050
+ }
1051
+ },
1052
+ "block_ref": {
1053
+ "workchain": 0,
1054
+ "shard": "E000000000000000",
1055
+ "seqno": 32252152
1056
+ },
1057
+ "in_msg": {
1058
+ "hash": "UIYp68vkpkG0b++mVujZUDWyCnUQ87LCUfFU/gf1uM0=",
1059
+ "source": "0:0E1053B7C183811DB5EBEB744D139614E44AC3C2F0C8307BB89F010ED25DCA2F",
1060
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1061
+ "value": "810000000",
1062
+ "value_extra_currencies": {},
1063
+ "fwd_fee": "1048542",
1064
+ "ihr_fee": "0",
1065
+ "created_lt": "33819837000006",
1066
+ "created_at": "1745381927",
1067
+ "opcode": "0x7362d09c",
1068
+ "ihr_disabled": true,
1069
+ "bounce": false,
1070
+ "bounced": false,
1071
+ "import_fee": null,
1072
+ "message_content": {
1073
+ "hash": "rlqsutggZLzGT1Ybs8epuagqSdBhavhJlm64XkdaYfc=",
1074
+ "body": "te6cckECBAEAAUkAAWRzYtCcAAAAAC16lLdAX14QCAAXn7Ict5gIndHb7mHAWE0I+9fBuep1ZLHA807xRT5qTQECykAAAAEAAAAALXqUtwAAAAAAAAAAAAAAAAAAAAAAAAAAAHRlc3RuZXRfMDY4AAADrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF9eEAFPbrPLSxh9MgGvv5ajjmI2cyWyn5AgMAyYAZ4tGQijt1fcHrmk5s/lYy+nibzqNl7n7UUmk9EIs/l/AAohuNo/NcGsTYdF9dQwd+JbK0gqXbulK1Mt1SytndpfYABwgp2+DBwI7a9fW6JonLCnIlYeF4ZBg93E+Ah2ku5RfAAIOAAXn7Ict5gIndHb7mHAWE0I+9fBuep1ZLHA807xRT5qTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMS0BBcz0iY",
1075
+ "decoded": null
1076
+ },
1077
+ "init_state": null
1078
+ },
1079
+ "out_msgs": [
1080
+ {
1081
+ "hash": "nuK3CV11oYEut4A8O0eiGFMEQPS25TXhXR9Udn8kiwA=",
1082
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1083
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1084
+ "value": "804548000",
1085
+ "value_extra_currencies": {},
1086
+ "fwd_fee": "915207",
1087
+ "ihr_fee": "0",
1088
+ "created_lt": "33819840000002",
1089
+ "created_at": "1745381934",
1090
+ "opcode": "0x40000001",
1091
+ "ihr_disabled": true,
1092
+ "bounce": true,
1093
+ "bounced": false,
1094
+ "import_fee": null,
1095
+ "message_content": {
1096
+ "hash": "9W/2MiPqOJh5uvc+L6wsaS7SyK75QuGMO5Yfy3OI+FU=",
1097
+ "body": "te6cckECAwEAARQAAspAAAABAAAAAC16lLcAAAAAAAAAAAAAAAAAAAAAAAAAAAB0ZXN0bmV0XzA2OAAAA6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfXhABT26zy0sYfTIBr7+Wo45iNnMlsp+QECAMmAGeLRkIo7dX3B65pObP5WMvp4m86jZe5+1FJpPRCLP5fwAKIbjaPzXBrE2HRfXUMHfiWytIKl27pStTLdUsrZ3aX2AAcIKdvgwcCO2vX1uiaJywpyJWHheGQYPdxPgIdpLuUXwACDgAF5+yHLeYCJ3R2+5hwFhNCPvXwbnqdWSxwPNO8UU+akwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATEtAQ84Glew==",
1098
+ "decoded": null
1099
+ },
1100
+ "init_state": null
1101
+ }
1102
+ ],
1103
+ "account_state_before": {
1104
+ "hash": "9SrthrTDIumq0/aa/tgHYz+2OQAqkZW3pQcHBQK+VgY=",
1105
+ "balance": "11410805853",
1106
+ "extra_currencies": {},
1107
+ "account_status": "active",
1108
+ "frozen_hash": null,
1109
+ "data_hash": "fcZxvtLwP8UB1oDof1o/Zk9GPgHvoq1o4Njn0ruOj6g=",
1110
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
1111
+ },
1112
+ "account_state_after": {
1113
+ "hash": "2MHt/sLBCafZGlsC7yR4D4tFqcy4WqcqNFPRfkA3r1I=",
1114
+ "balance": null,
1115
+ "extra_currencies": null,
1116
+ "account_status": null,
1117
+ "frozen_hash": null,
1118
+ "data_hash": null,
1119
+ "code_hash": null
1120
+ },
1121
+ "emulated": false
1122
+ },
1123
+ {
1124
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1125
+ "hash": "b41oRXJFyOELKeNNImZ0rNk7By+Mjx9imhtKIm36z28=",
1126
+ "lt": "33819381000001",
1127
+ "now": 1745380844,
1128
+ "mc_block_seqno": 30425352,
1129
+ "trace_id": "nNQzgXKRZGPM48MBlGLZYkvjF86tXf3YlDopSWmvkoU=",
1130
+ "prev_trans_hash": "4TRb/2Rq5kfm3/lPofmIsHPVBHBff1RDb9MRkZmQFIg=",
1131
+ "prev_trans_lt": "33781872000001",
1132
+ "orig_status": "active",
1133
+ "end_status": "active",
1134
+ "total_fees": "7966172",
1135
+ "total_fees_extra_currencies": {},
1136
+ "description": {
1137
+ "type": "ord",
1138
+ "aborted": false,
1139
+ "destroyed": false,
1140
+ "credit_first": true,
1141
+ "storage_ph": {
1142
+ "storage_fees_collected": "239641",
1143
+ "status_change": "unchanged"
1144
+ },
1145
+ "credit_ph": {
1146
+ "credit": "50000000"
1147
+ },
1148
+ "compute_ph": {
1149
+ "skipped": false,
1150
+ "success": true,
1151
+ "msg_state_used": false,
1152
+ "account_activated": false,
1153
+ "gas_fees": "7593200",
1154
+ "gas_used": "18983",
1155
+ "gas_limit": "125000",
1156
+ "mode": 0,
1157
+ "exit_code": 0,
1158
+ "vm_steps": 374,
1159
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
1160
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
1161
+ },
1162
+ "action": {
1163
+ "success": true,
1164
+ "valid": true,
1165
+ "no_funds": false,
1166
+ "status_change": "unchanged",
1167
+ "total_fwd_fees": "400000",
1168
+ "total_action_fees": "133331",
1169
+ "result_code": 0,
1170
+ "tot_actions": 1,
1171
+ "spec_actions": 0,
1172
+ "skipped_actions": 0,
1173
+ "msgs_created": 1,
1174
+ "action_list_hash": "Cc1SBJ/eg4yme/ikRulqoWrWC1Ly+qKbilTswTP3ZLM=",
1175
+ "tot_msg_size": {
1176
+ "cells": "1",
1177
+ "bits": "801"
1178
+ }
1179
+ }
1180
+ },
1181
+ "block_ref": {
1182
+ "workchain": 0,
1183
+ "shard": "E000000000000000",
1184
+ "seqno": 32251706
1185
+ },
1186
+ "in_msg": {
1187
+ "hash": "YrSOrzccaj/E4kCB0dkg1KNf+5+cmXAvjq0zh7PVBjE=",
1188
+ "source": "0:93EEB31CEFB29C3DC88E97157E75F85858AED18AC07B94401D1B37B67F4FAF50",
1189
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1190
+ "value": "50000000",
1191
+ "value_extra_currencies": {},
1192
+ "fwd_fee": "557871",
1193
+ "ihr_fee": "0",
1194
+ "created_lt": "33819379000002",
1195
+ "created_at": "1745380838",
1196
+ "opcode": "0x60000003",
1197
+ "ihr_disabled": true,
1198
+ "bounce": false,
1199
+ "bounced": false,
1200
+ "import_fee": null,
1201
+ "message_content": {
1202
+ "hash": "4J/UekskQoOePa3GP/E8Dq0RJrL2R6fyP9tSj/GRQNA=",
1203
+ "body": "te6cckEBAQEAfgAA+GAAAAMAAAAAQxMpWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZXZfMjI5Em28eGyvBrtG/Kccbl88ES70hezNZ8vSQpNsbmd0RrbOIkpBylKQxIydL1YPgLuwnuYXqgvwKRBIkTT444sUhgAAAABoCGXAAAAAAGgRoEBReuRb",
1204
+ "decoded": null
1205
+ },
1206
+ "init_state": null
1207
+ },
1208
+ "out_msgs": [
1209
+ {
1210
+ "hash": "aKFKXfqQCtP78BLS1ivDX8HFxR/oa4d4bQyce/u86qY=",
1211
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1212
+ "destination": "0:93EEB31CEFB29C3DC88E97157E75F85858AED18AC07B94401D1B37B67F4FAF50",
1213
+ "value": "42006800",
1214
+ "value_extra_currencies": {},
1215
+ "fwd_fee": "266669",
1216
+ "ihr_fee": "0",
1217
+ "created_lt": "33819381000002",
1218
+ "created_at": "1745380844",
1219
+ "opcode": "0x2000000f",
1220
+ "ihr_disabled": true,
1221
+ "bounce": true,
1222
+ "bounced": false,
1223
+ "import_fee": null,
1224
+ "message_content": {
1225
+ "hash": "sy0qmUvKXzZenaujqSKMmPLYp6MxJRVsXoBewUCWgxc=",
1226
+ "body": "te6cckEBAQEADgAAGCAAAA8AAAAAQxMpWSoh3yo=",
1227
+ "decoded": null
1228
+ },
1229
+ "init_state": null
1230
+ }
1231
+ ],
1232
+ "account_state_before": {
1233
+ "hash": "B6cCSbbC6bfwmQ9/K3Rl52Dr0BRU8vYaAdaHIfVELxE=",
1234
+ "balance": "11411045494",
1235
+ "extra_currencies": {},
1236
+ "account_status": "active",
1237
+ "frozen_hash": null,
1238
+ "data_hash": "/orHGMAvR+zx6bDWp5Q9k/MMrhEKtRCjBY0pK2vHLXE=",
1239
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
1240
+ },
1241
+ "account_state_after": {
1242
+ "hash": "9SrthrTDIumq0/aa/tgHYz+2OQAqkZW3pQcHBQK+VgY=",
1243
+ "balance": "11410805853",
1244
+ "extra_currencies": {},
1245
+ "account_status": "active",
1246
+ "frozen_hash": null,
1247
+ "data_hash": "fcZxvtLwP8UB1oDof1o/Zk9GPgHvoq1o4Njn0ruOj6g=",
1248
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
1249
+ },
1250
+ "emulated": false
1251
+ },
1252
+ {
1253
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1254
+ "hash": "4TRb/2Rq5kfm3/lPofmIsHPVBHBff1RDb9MRkZmQFIg=",
1255
+ "lt": "33781872000001",
1256
+ "now": 1745291485,
1257
+ "mc_block_seqno": 30389818,
1258
+ "trace_id": "igjF04RIkRnnuWe21PZw4cFN2kw0m4Iv7YUiO3odwSs=",
1259
+ "prev_trans_hash": "SSsniw3A+YESA8OOSK+nho1RopGAFGojAvmrT7TW/qw=",
1260
+ "prev_trans_lt": "33781871000003",
1261
+ "orig_status": "active",
1262
+ "end_status": "active",
1263
+ "total_fees": "9409068",
1264
+ "total_fees_extra_currencies": {},
1265
+ "description": {
1266
+ "type": "ord",
1267
+ "aborted": false,
1268
+ "destroyed": false,
1269
+ "credit_first": false,
1270
+ "storage_ph": {
1271
+ "storage_fees_collected": "6",
1272
+ "status_change": "unchanged"
1273
+ },
1274
+ "credit_ph": {
1275
+ "credit": "1100000000"
1276
+ },
1277
+ "compute_ph": {
1278
+ "skipped": false,
1279
+ "success": true,
1280
+ "msg_state_used": false,
1281
+ "account_activated": false,
1282
+ "gas_fees": "9142400",
1283
+ "gas_used": "22856",
1284
+ "gas_limit": "1000000",
1285
+ "mode": 0,
1286
+ "exit_code": 0,
1287
+ "vm_steps": 475,
1288
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
1289
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
1290
+ },
1291
+ "action": {
1292
+ "success": true,
1293
+ "valid": true,
1294
+ "no_funds": false,
1295
+ "status_change": "unchanged",
1296
+ "total_fwd_fees": "800000",
1297
+ "total_action_fees": "266662",
1298
+ "result_code": 0,
1299
+ "tot_actions": 2,
1300
+ "spec_actions": 0,
1301
+ "skipped_actions": 0,
1302
+ "msgs_created": 2,
1303
+ "action_list_hash": "QuHYHYBhMyZ9d+6JqbO5UdXG2N+Q4VfoLnv0Io9u8BA=",
1304
+ "tot_msg_size": {
1305
+ "cells": "2",
1306
+ "bits": "1498"
1307
+ }
1308
+ }
1309
+ },
1310
+ "block_ref": {
1311
+ "workchain": 0,
1312
+ "shard": "E000000000000000",
1313
+ "seqno": 32216163
1314
+ },
1315
+ "in_msg": {
1316
+ "hash": "Oce0zdupYoXZyiC6D9Khskmv1le1Lks6wbhAv6/BSyc=",
1317
+ "source": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
1318
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1319
+ "value": "1100000000",
1320
+ "value_extra_currencies": {},
1321
+ "fwd_fee": "872540",
1322
+ "ihr_fee": "0",
1323
+ "created_lt": "33781869000002",
1324
+ "created_at": "1745291479",
1325
+ "opcode": "0x40000001",
1326
+ "ihr_disabled": true,
1327
+ "bounce": true,
1328
+ "bounced": false,
1329
+ "import_fee": null,
1330
+ "message_content": {
1331
+ "hash": "+Hw4vx8Dtjx6CpOgXp2y9llt75Z7nWBWtimT7hTIH44=",
1332
+ "body": "te6cckECAwEAAQAAAqJAAAABAAAAAHM/2ikAAAAAAAAAAAAAAAAAAAAAAAAAAAB0ZXN0bmV0XzA2OAAAA6sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfXhAAABAgDJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAg4ABefshy3mAid0dvuYcBYTQj718G56nVkscDzTvFFPmpMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAExLQEG/rzuI=",
1333
+ "decoded": null
1334
+ },
1335
+ "init_state": null
1336
+ },
1337
+ "out_msgs": [
1338
+ {
1339
+ "hash": "pbeCOWZIDoa03OcR5AX2nOUhkknX0hWkndQduZgH36Y=",
1340
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1341
+ "destination": "0:800558EC42799110B30AEAF8F019B60D4731D7A1377686F497EAFFD5995AEB24",
1342
+ "value": "10000000",
1343
+ "value_extra_currencies": {},
1344
+ "fwd_fee": "266669",
1345
+ "ihr_fee": "0",
1346
+ "created_lt": "33781872000002",
1347
+ "created_at": "1745291485",
1348
+ "opcode": null,
1349
+ "ihr_disabled": true,
1350
+ "bounce": false,
1351
+ "bounced": false,
1352
+ "import_fee": null,
1353
+ "message_content": {
1354
+ "hash": "lqKW0iTyhcZ77pPDD4owkVfw2qNdxbh+QQt4YwoJz8c=",
1355
+ "body": "te6cckEBAQEAAgAAAEysuc0=",
1356
+ "decoded": null
1357
+ },
1358
+ "init_state": null
1359
+ },
1360
+ {
1361
+ "hash": "8T3R4AcObCVhXOJqvAx+fKXszXYQLUfTXh6plDD2E4g=",
1362
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1363
+ "destination": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
1364
+ "value": "990000000",
1365
+ "value_extra_currencies": {},
1366
+ "fwd_fee": "266669",
1367
+ "ihr_fee": "0",
1368
+ "created_lt": "33781872000003",
1369
+ "created_at": "1745291485",
1370
+ "opcode": "0x2000000f",
1371
+ "ihr_disabled": true,
1372
+ "bounce": true,
1373
+ "bounced": false,
1374
+ "import_fee": null,
1375
+ "message_content": {
1376
+ "hash": "E+93r4qwoaoQzcFfA1IkVDDSmlORXRng7UYX7s3iMeI=",
1377
+ "body": "te6cckEBAQEADgAAGCAAAA8AAAAAcz/aKb03sFI=",
1378
+ "decoded": null
1379
+ },
1380
+ "init_state": null
1381
+ }
1382
+ ],
1383
+ "account_state_before": {
1384
+ "hash": "1tJhAPJPx1+U8nb87UCjjs1M1ojh319ud9lZ4rVj+HE=",
1385
+ "balance": "11320987900",
1386
+ "extra_currencies": {},
1387
+ "account_status": "active",
1388
+ "frozen_hash": null,
1389
+ "data_hash": "/orHGMAvR+zx6bDWp5Q9k/MMrhEKtRCjBY0pK2vHLXE=",
1390
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
1391
+ },
1392
+ "account_state_after": {
1393
+ "hash": "B6cCSbbC6bfwmQ9/K3Rl52Dr0BRU8vYaAdaHIfVELxE=",
1394
+ "balance": "11411045494",
1395
+ "extra_currencies": {},
1396
+ "account_status": "active",
1397
+ "frozen_hash": null,
1398
+ "data_hash": "/orHGMAvR+zx6bDWp5Q9k/MMrhEKtRCjBY0pK2vHLXE=",
1399
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
1400
+ },
1401
+ "emulated": false
1402
+ }
1403
+ ],
1404
+ "address_book": {
1405
+ "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526": {
1406
+ "user_friendly": "0QALz9kOW8wETujt9zDgLCaEfevg3PU6sljgead4op81Jixq",
1407
+ "domain": null
1408
+ },
1409
+ "0:0E1053B7C183811DB5EBEB744D139614E44AC3C2F0C8307BB89F010ED25DCA2F": {
1410
+ "user_friendly": "kQAOEFO3wYOBHbXr63RNE5YU5ErDwvDIMHu4nwEO0l3KL2GX",
1411
+ "domain": null
1412
+ },
1413
+ "0:800558EC42799110B30AEAF8F019B60D4731D7A1377686F497EAFFD5995AEB24": {
1414
+ "user_friendly": "0QCABVjsQnmRELMK6vjwGbYNRzHXoTd2hvSX6v_VmVrrJD6Z",
1415
+ "domain": null
1416
+ },
1417
+ "0:93EEB31CEFB29C3DC88E97157E75F85858AED18AC07B94401D1B37B67F4FAF50": {
1418
+ "user_friendly": "0QCT7rMc77KcPciOlxV-dfhYWK7RisB7lEAdGze2f0-vUGu7",
1419
+ "domain": null
1420
+ },
1421
+ "0:9F5F854CA2F8C24420CDD584A0A7E26E849317FA203070F4792063F6E1D284AC": {
1422
+ "user_friendly": "kQCfX4VMovjCRCDN1YSgp-JuhJMX-iAwcPR5IGP24dKErIdv",
1423
+ "domain": null
1424
+ },
1425
+ "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13": {
1426
+ "user_friendly": "kQDlYDH0PmST2okwTluXJ2mUDMDCzPzXF1gGz24U6H2tE9Wr",
1427
+ "domain": null
1428
+ }
1429
+ }
1430
+ }
1431
+
1432
+
1433
+
1434
+ {
1435
+ "transactions": [
1436
+ {
1437
+ "account": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1438
+ "hash": "4TRb/2Rq5kfm3/lPofmIsHPVBHBff1RDb9MRkZmQFIg=",
1439
+ "lt": "33781872000001",
1440
+ "now": 1745291485,
1441
+ "mc_block_seqno": 30389818,
1442
+ "trace_id": "igjF04RIkRnnuWe21PZw4cFN2kw0m4Iv7YUiO3odwSs=",
1443
+ "prev_trans_hash": "SSsniw3A+YESA8OOSK+nho1RopGAFGojAvmrT7TW/qw=",
1444
+ "prev_trans_lt": "33781871000003",
1445
+ "orig_status": "active",
1446
+ "end_status": "active",
1447
+ "total_fees": "9409068",
1448
+ "total_fees_extra_currencies": {},
1449
+ "description": {
1450
+ "type": "ord",
1451
+ "aborted": false,
1452
+ "destroyed": false,
1453
+ "credit_first": false,
1454
+ "storage_ph": {
1455
+ "storage_fees_collected": "6",
1456
+ "status_change": "unchanged"
1457
+ },
1458
+ "credit_ph": {
1459
+ "credit": "1100000000"
1460
+ },
1461
+ "compute_ph": {
1462
+ "skipped": false,
1463
+ "success": true,
1464
+ "msg_state_used": false,
1465
+ "account_activated": false,
1466
+ "gas_fees": "9142400",
1467
+ "gas_used": "22856",
1468
+ "gas_limit": "1000000",
1469
+ "mode": 0,
1470
+ "exit_code": 0,
1471
+ "vm_steps": 475,
1472
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
1473
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
1474
+ },
1475
+ "action": {
1476
+ "success": true,
1477
+ "valid": true,
1478
+ "no_funds": false,
1479
+ "status_change": "unchanged",
1480
+ "total_fwd_fees": "800000",
1481
+ "total_action_fees": "266662",
1482
+ "result_code": 0,
1483
+ "tot_actions": 2,
1484
+ "spec_actions": 0,
1485
+ "skipped_actions": 0,
1486
+ "msgs_created": 2,
1487
+ "action_list_hash": "QuHYHYBhMyZ9d+6JqbO5UdXG2N+Q4VfoLnv0Io9u8BA=",
1488
+ "tot_msg_size": {
1489
+ "cells": "2",
1490
+ "bits": "1498"
1491
+ }
1492
+ }
1493
+ },
1494
+ "block_ref": {
1495
+ "workchain": 0,
1496
+ "shard": "E000000000000000",
1497
+ "seqno": 32216163
1498
+ },
1499
+ "in_msg": {
1500
+ "hash": "Oce0zdupYoXZyiC6D9Khskmv1le1Lks6wbhAv6/BSyc=",
1501
+ "source": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
1502
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1503
+ "value": "1100000000",
1504
+ "value_extra_currencies": {},
1505
+ "fwd_fee": "872540",
1506
+ "ihr_fee": "0",
1507
+ "created_lt": "33781869000002",
1508
+ "created_at": "1745291479",
1509
+ "opcode": "0x40000001",
1510
+ "ihr_disabled": true,
1511
+ "bounce": true,
1512
+ "bounced": false,
1513
+ "import_fee": null,
1514
+ "message_content": {
1515
+ "hash": "+Hw4vx8Dtjx6CpOgXp2y9llt75Z7nWBWtimT7hTIH44=",
1516
+ "body": "te6cckECAwEAAQAAAqJAAAABAAAAAHM/2ikAAAAAAAAAAAAAAAAAAAAAAAAAAAB0ZXN0bmV0XzA2OAAAA6sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfXhAAABAgDJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAg4ABefshy3mAid0dvuYcBYTQj718G56nVkscDzTvFFPmpMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAExLQEG/rzuI=",
1517
+ "decoded": null
1518
+ },
1519
+ "init_state": null
1520
+ },
1521
+ "out_msgs": [
1522
+ {
1523
+ "hash": "pbeCOWZIDoa03OcR5AX2nOUhkknX0hWkndQduZgH36Y=",
1524
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1525
+ "destination": "0:800558EC42799110B30AEAF8F019B60D4731D7A1377686F497EAFFD5995AEB24",
1526
+ "value": "10000000",
1527
+ "value_extra_currencies": {},
1528
+ "fwd_fee": "266669",
1529
+ "ihr_fee": "0",
1530
+ "created_lt": "33781872000002",
1531
+ "created_at": "1745291485",
1532
+ "opcode": null,
1533
+ "ihr_disabled": true,
1534
+ "bounce": false,
1535
+ "bounced": false,
1536
+ "import_fee": null,
1537
+ "message_content": {
1538
+ "hash": "lqKW0iTyhcZ77pPDD4owkVfw2qNdxbh+QQt4YwoJz8c=",
1539
+ "body": "te6cckEBAQEAAgAAAEysuc0=",
1540
+ "decoded": null
1541
+ },
1542
+ "init_state": null
1543
+ },
1544
+ {
1545
+ "hash": "8T3R4AcObCVhXOJqvAx+fKXszXYQLUfTXh6plDD2E4g=",
1546
+ "source": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1547
+ "destination": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
1548
+ "value": "990000000",
1549
+ "value_extra_currencies": {},
1550
+ "fwd_fee": "266669",
1551
+ "ihr_fee": "0",
1552
+ "created_lt": "33781872000003",
1553
+ "created_at": "1745291485",
1554
+ "opcode": "0x2000000f",
1555
+ "ihr_disabled": true,
1556
+ "bounce": true,
1557
+ "bounced": false,
1558
+ "import_fee": null,
1559
+ "message_content": {
1560
+ "hash": "E+93r4qwoaoQzcFfA1IkVDDSmlORXRng7UYX7s3iMeI=",
1561
+ "body": "te6cckEBAQEADgAAGCAAAA8AAAAAcz/aKb03sFI=",
1562
+ "decoded": null
1563
+ },
1564
+ "init_state": null
1565
+ }
1566
+ ],
1567
+ "account_state_before": {
1568
+ "hash": "1tJhAPJPx1+U8nb87UCjjs1M1ojh319ud9lZ4rVj+HE=",
1569
+ "balance": "11320987900",
1570
+ "extra_currencies": {},
1571
+ "account_status": "active",
1572
+ "frozen_hash": null,
1573
+ "data_hash": "/orHGMAvR+zx6bDWp5Q9k/MMrhEKtRCjBY0pK2vHLXE=",
1574
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
1575
+ },
1576
+ "account_state_after": {
1577
+ "hash": "B6cCSbbC6bfwmQ9/K3Rl52Dr0BRU8vYaAdaHIfVELxE=",
1578
+ "balance": "11411045494",
1579
+ "extra_currencies": {},
1580
+ "account_status": "active",
1581
+ "frozen_hash": null,
1582
+ "data_hash": "/orHGMAvR+zx6bDWp5Q9k/MMrhEKtRCjBY0pK2vHLXE=",
1583
+ "code_hash": "6E2PyLCtP/fxVVVyA6HUhG7wrFl0oTvplIRJbzQDv9I="
1584
+ },
1585
+ "emulated": false
1586
+ },
1587
+ {
1588
+ "account": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
1589
+ "hash": "igjF04RIkRnnuWe21PZw4cFN2kw0m4Iv7YUiO3odwSs=",
1590
+ "lt": "33781869000001",
1591
+ "now": 1745291479,
1592
+ "mc_block_seqno": 30389815,
1593
+ "trace_id": "igjF04RIkRnnuWe21PZw4cFN2kw0m4Iv7YUiO3odwSs=",
1594
+ "prev_trans_hash": "i0A4RnyWQxuKRFZI+gXy6EzjvT32A3RUbGgycQyyKos=",
1595
+ "prev_trans_lt": "33781861000001",
1596
+ "orig_status": "active",
1597
+ "end_status": "active",
1598
+ "total_fees": "3274665",
1599
+ "total_fees_extra_currencies": {},
1600
+ "description": {
1601
+ "type": "ord",
1602
+ "aborted": false,
1603
+ "destroyed": false,
1604
+ "credit_first": true,
1605
+ "storage_ph": {
1606
+ "storage_fees_collected": "5",
1607
+ "status_change": "unchanged"
1608
+ },
1609
+ "compute_ph": {
1610
+ "skipped": false,
1611
+ "success": true,
1612
+ "msg_state_used": false,
1613
+ "account_activated": false,
1614
+ "gas_fees": "1323200",
1615
+ "gas_used": "3308",
1616
+ "gas_limit": "0",
1617
+ "gas_credit": "10000",
1618
+ "mode": 0,
1619
+ "exit_code": 0,
1620
+ "vm_steps": 68,
1621
+ "vm_init_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
1622
+ "vm_final_state_hash": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
1623
+ },
1624
+ "action": {
1625
+ "success": true,
1626
+ "valid": true,
1627
+ "no_funds": false,
1628
+ "status_change": "unchanged",
1629
+ "total_fwd_fees": "1308800",
1630
+ "total_action_fees": "436260",
1631
+ "result_code": 0,
1632
+ "tot_actions": 1,
1633
+ "spec_actions": 0,
1634
+ "skipped_actions": 0,
1635
+ "msgs_created": 1,
1636
+ "action_list_hash": "iRyJQm+N0wHUJgX6cCr5mxqY7fhv/X+iDy+lBU41W88=",
1637
+ "tot_msg_size": {
1638
+ "cells": "4",
1639
+ "bits": "2677"
1640
+ }
1641
+ }
1642
+ },
1643
+ "block_ref": {
1644
+ "workchain": 0,
1645
+ "shard": "2000000000000000",
1646
+ "seqno": 32262665
1647
+ },
1648
+ "in_msg": {
1649
+ "hash": "NpVWaYvyZ6kw6SeOGq1qR/6ci/BdaDztzcT+LcIOzQs=",
1650
+ "source": null,
1651
+ "destination": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
1652
+ "value": null,
1653
+ "value_extra_currencies": null,
1654
+ "fwd_fee": null,
1655
+ "ihr_fee": null,
1656
+ "created_lt": null,
1657
+ "created_at": null,
1658
+ "opcode": "0xaed1bd4f",
1659
+ "ihr_disabled": null,
1660
+ "bounce": null,
1661
+ "bounced": null,
1662
+ "import_fee": "0",
1663
+ "message_content": {
1664
+ "hash": "RkQWI4HdxvIjRca990dDYYMW6A65uCLaMdhKiyI/PcI=",
1665
+ "body": "te6cckECBQEAAYgAAZyu0b1PuTS60ZV46cgX8CVki96JCkV6Vr+2uBCJNZA3XEy6lH4kBoHztb+es/FHDCksWpOhWWLIh8q3tA5kvF4PKamjF2gHCRAAAABnAAEBAWhiAHKwGPofMkntRJgnLcuTtMoGYGFmfmuLrANntwp0PtaJogyFWAAAAAAAAAAAAAAAAAABAgKiQAAAAQAAAABzP9opAAAAAAAAAAAAAAAAAAAAAAAAAAAAdGVzdG5ldF8wNjgAAAOrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAX14QAAAwQAyYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAIOAAXn7Ict5gIndHb7mHAWE0I+9fBuep1ZLHA807xRT5qTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMS0BCuuSM+",
1666
+ "decoded": null
1667
+ },
1668
+ "init_state": null,
1669
+ "hash_norm": "QGDIk9r/s/IHx913MML1RmEXegyfyUvpakUVbzweX7Y="
1670
+ },
1671
+ "out_msgs": [
1672
+ {
1673
+ "hash": "Oce0zdupYoXZyiC6D9Khskmv1le1Lks6wbhAv6/BSyc=",
1674
+ "source": "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526",
1675
+ "destination": "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13",
1676
+ "value": "1100000000",
1677
+ "value_extra_currencies": {},
1678
+ "fwd_fee": "872540",
1679
+ "ihr_fee": "0",
1680
+ "created_lt": "33781869000002",
1681
+ "created_at": "1745291479",
1682
+ "opcode": "0x40000001",
1683
+ "ihr_disabled": true,
1684
+ "bounce": true,
1685
+ "bounced": false,
1686
+ "import_fee": null,
1687
+ "message_content": {
1688
+ "hash": "+Hw4vx8Dtjx6CpOgXp2y9llt75Z7nWBWtimT7hTIH44=",
1689
+ "body": "te6cckECAwEAAQAAAqJAAAABAAAAAHM/2ikAAAAAAAAAAAAAAAAAAAAAAAAAAAB0ZXN0bmV0XzA2OAAAA6sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfXhAAABAgDJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAg4ABefshy3mAid0dvuYcBYTQj718G56nVkscDzTvFFPmpMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAExLQEG/rzuI=",
1690
+ "decoded": null
1691
+ },
1692
+ "init_state": null
1693
+ }
1694
+ ],
1695
+ "account_state_before": {
1696
+ "hash": "O8Gy+i8vNVIfPYwW2dYuyRNIOG0ZWbtqgwK+We6Z3Vw=",
1697
+ "balance": "2933989914",
1698
+ "extra_currencies": {},
1699
+ "account_status": "active",
1700
+ "frozen_hash": null,
1701
+ "data_hash": "eLXwGbCjHMnHTWwG6eRGYJeovT2RMl3whYQmpugcT7E=",
1702
+ "code_hash": "/rX/aCDi/w2Ug+fg1iyBfYRniftK5YDIeIZtlZ2r1cA="
1703
+ },
1704
+ "account_state_after": {
1705
+ "hash": "k1E5EjEOVcOnlcDpCXp6cEcUWANSiO1JALJ8jWWr6vI=",
1706
+ "balance": "1829842709",
1707
+ "extra_currencies": {},
1708
+ "account_status": "active",
1709
+ "frozen_hash": null,
1710
+ "data_hash": "KwxeTOyF/xxkMSu+a7asGlc7sxQAi3r6VaSay2L56Ko=",
1711
+ "code_hash": "/rX/aCDi/w2Ug+fg1iyBfYRniftK5YDIeIZtlZ2r1cA="
1712
+ },
1713
+ "emulated": false
1714
+ }
1715
+ ],
1716
+ "address_book": {
1717
+ "0:0BCFD90E5BCC044EE8EDF730E02C26847DEBE0DCF53AB258E079A778A29F3526": {
1718
+ "user_friendly": "0QALz9kOW8wETujt9zDgLCaEfevg3PU6sljgead4op81Jixq",
1719
+ "domain": null
1720
+ },
1721
+ "0:800558EC42799110B30AEAF8F019B60D4731D7A1377686F497EAFFD5995AEB24": {
1722
+ "user_friendly": "0QCABVjsQnmRELMK6vjwGbYNRzHXoTd2hvSX6v_VmVrrJD6Z",
1723
+ "domain": null
1724
+ },
1725
+ "0:E56031F43E6493DA89304E5B972769940CC0C2CCFCD7175806CF6E14E87DAD13": {
1726
+ "user_friendly": "kQDlYDH0PmST2okwTluXJ2mUDMDCzPzXF1gGz24U6H2tE9Wr",
1727
+ "domain": null
1728
+ }
1729
+ }
1730
+ }