You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contracts/contracts/deployable/types.tolk
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,27 @@ fun Deployable<T>.store(self) {
11
11
return contract.setData(self.toCell());
12
12
}
13
13
14
+
type Deployable_InMessage =
15
+
| Deployable_Initialize
16
+
| Deployable_InitializeAndSend
17
+
;
14
18
19
+
// Message for Initializing the Deployable contract. It sets the code and data of the contract.
15
20
struct (0xba466447) Deployable_Initialize {
16
21
stateInit: ContractState;
17
22
}
18
23
24
+
// This message initializes the Deployable contract and immediately sends a message to itself to execute some logic. It allows to carry the message value.
0 commit comments