-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
emulator - testing sendInternalMessage and sendExternalMessage - WIP
- Loading branch information
neodiX
committed
Jun 7, 2024
1 parent
120ef62
commit ed2d833
Showing
7 changed files
with
190 additions
and
49 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
emulator/src/main/java/org/ton/java/emulator/SendExternalMessageResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package org.ton.java.emulator; | ||
|
||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
import lombok.ToString; | ||
|
||
import java.io.Serializable; | ||
|
||
@Builder | ||
@Setter | ||
@Getter | ||
@ToString | ||
public class SendExternalMessageResult implements Serializable { | ||
boolean success; | ||
String new_code; // Base64 boc decoded new code cell | ||
String new_data; // Base64 boc decoded new data cell | ||
String error; | ||
String vm_log; | ||
int vm_exit_code; | ||
String stack; // Base64 encoded BoC serialized stack (VmStack) | ||
String missing_library; | ||
int gas_used; | ||
String actions; // Base64 boc decoded actions cell of type (OutList n) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.