You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.5 KiB
77 lines
1.5 KiB
message(0xf8a7ea5) TokenTransfer { |
|
queryId: Int as uint64; |
|
amount: Int as coins; |
|
destination: Address; |
|
responseDestination: Address?; |
|
customPayload: Cell?; |
|
forwardTonAmount: Int as coins; |
|
forwardPayload: Slice as remaining; |
|
} |
|
|
|
message(0x178d4519) TokenTransferInternal { |
|
queryId: Int as uint64; |
|
amount: Int as coins; |
|
from: Address; |
|
responseAddress: Address?; |
|
forwardTonAmount: Int as coins; |
|
forwardPayload: Slice as remaining; |
|
setLinker: Int?; |
|
setLinkerAddress: Address?; |
|
} |
|
|
|
message(0x7362d09c) TokenNotification { |
|
queryId: Int as uint64; |
|
amount: Int as coins; |
|
from: Address; |
|
forwardPayload: Slice as remaining; |
|
} |
|
|
|
message(0x595f07bc) TokenBurn { |
|
queryId: Int as uint64; |
|
amount: Int as coins; |
|
owner: Address; |
|
responseAddress: Address?; |
|
} |
|
|
|
message(0x7bdd97de) TokenBurnNotification { |
|
queryId: Int as uint64; |
|
amount: Int as coins; |
|
owner: Address; |
|
responseAddress: Address?; |
|
} |
|
|
|
message(0xd53276db) TokenExcesses { |
|
queryId: Int as uint64; |
|
} |
|
|
|
message TokenUpdateContent { |
|
content: Cell?; |
|
} |
|
|
|
struct JettonData { |
|
totalSupply: Int; |
|
mintable: Bool; |
|
owner: Address; |
|
content: Cell?; |
|
walletCode: Cell; |
|
} |
|
|
|
struct JettonWalletData { |
|
balance: Int; |
|
owner: Address; |
|
master: Address; |
|
walletCode: Cell; |
|
} |
|
|
|
message SetLinkerNeighbor { |
|
neighbor: Address?; |
|
} |
|
|
|
message InitLinker { |
|
neighbor: Address?; |
|
walletAmount: Int; |
|
walletCode: Cell; |
|
walletData: Cell; |
|
walletAddress: Address; |
|
responseAddress: Address?; |
|
}
|
|
|