-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathmessages.tact
110 lines (93 loc) · 2.21 KB
/
messages.tact
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
struct JettonData {
totalSupply: Int;
mintable: Bool;
owner: Address;
content: Cell;
jettonWalletCode: Cell;
}
struct JettonWalletData {
balance: Int;
owner: Address;
master: Address;
code: Cell;
}
struct MaybeAddress {
address: Address?;
}
message(4) JettonUpdateContent {
queryId: Int as uint64;
content: Cell;
}
message(0xf8a7ea5) JettonTransfer {
queryId: Int as uint64;
amount: Int as coins;
destination: Address;
responseDestination: Address?;
customPayload: Cell?;
forwardTonAmount: Int as coins;
forwardPayload: Slice as remaining;
}
message(0x178d4519) JettonTransferInternal {
queryId: Int as uint64;
amount: Int as coins;
sender: Address;
responseDestination: Address?;
forwardTonAmount: Int as coins;
forwardPayload: Slice as remaining;
}
message(0x7362d09c) JettonNotification {
queryId: Int as uint64;
amount: Int as coins;
sender: Address;
forwardPayload: Slice as remaining;
}
message(0x595f07bc) JettonBurn {
queryId: Int as uint64;
amount: Int as coins;
responseDestination: Address;
customPayload: Cell?;
}
message(0x7bdd97de) JettonBurnNotification {
queryId: Int as uint64;
amount: Int as coins;
sender: Address;
responseDestination: Address;
}
message(0xd53276db) JettonExcesses {
queryId: Int as uint64;
}
message(0x2c76b973) ProvideWalletAddress {
queryId: Int as uint64;
ownerAddress: Address;
includeAddress: Bool;
}
const TakeWalletAddressOpcode: Int = 0xd1735400;
message(TakeWalletAddressOpcode) TakeWalletAddress {
queryId: Int as uint64;
walletAddress: Address;
ownerAddress: Cell?; //It is Maybe ^Address, just encoded it like this
}
message(21) Mint {
queryId: Int as uint64;
receiver: Address;
tonAmount: Int as coins;
mintMessage: JettonTransferInternal;
}
message(3) ChangeOwner {
queryId: Int as uint64;
newOwner: Address;
}
// notcoin
message(0xd372158c) TopUp {
queryId: Int as uint64;
}
message(0x6501f354) ChangeAdmin {
queryId: Int as uint64;
nextAdmin: Address;
}
message(0xfb88e119) ClaimAdmin {
queryId: Int as uint64;
}
message(0x7431f221) DropAdmin {
queryId: Int as uint64;
}