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.
16 lines
500 B
16 lines
500 B
// https://ton.org/docs/#/overviews/TL-B |
|
// base types defined in https://github.com/ton-blockchain/ton/blob/master/crypto/block/block.tlb |
|
|
|
// storage (according to save_data() contract method) |
|
|
|
storage#_ owner_address:MsgAddress counter:uint64 = Storage |
|
|
|
// ops |
|
|
|
increment query_id:uint64 = InternalMsgBody |
|
|
|
deposit query_id:uint64 = InternalMsgBody |
|
|
|
withdraw query_id:uint64 withdraw_amount:Grams = InternalMsgBody |
|
|
|
transfer_ownership query_id:uint64 new_owner_address:MsgAddress = InternalMsgBody
|
|
|