mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-15 04:32:21 +00:00
* Add legacy_tester for existing funC contracts * Add storage-contracts and pragma options
30 lines
1.2 KiB
Text
30 lines
1.2 KiB
Text
cell pack_jetton_wallet_data(int balance, slice owner_address, slice jetton_master_address, cell jetton_wallet_code) inline {
|
|
return begin_cell()
|
|
.store_coins(balance)
|
|
.store_slice(owner_address)
|
|
.store_slice(jetton_master_address)
|
|
.store_ref(jetton_wallet_code)
|
|
.end_cell();
|
|
}
|
|
|
|
cell calculate_jetton_wallet_state_init(slice owner_address, slice jetton_master_address, cell jetton_wallet_code) inline {
|
|
return begin_cell()
|
|
.store_uint(0, 2)
|
|
.store_dict(jetton_wallet_code)
|
|
.store_dict(pack_jetton_wallet_data(0, owner_address, jetton_master_address, jetton_wallet_code))
|
|
.store_uint(0, 1)
|
|
.end_cell();
|
|
}
|
|
|
|
slice calculate_jetton_wallet_address(cell state_init) inline {
|
|
return begin_cell().store_uint(4, 3)
|
|
.store_int(workchain(), 8)
|
|
.store_uint(cell_hash(state_init), 256)
|
|
.end_cell()
|
|
.begin_parse();
|
|
}
|
|
|
|
slice calculate_user_jetton_wallet_address(slice owner_address, slice jetton_master_address, cell jetton_wallet_code) inline {
|
|
return calculate_jetton_wallet_address(calculate_jetton_wallet_state_init(owner_address, jetton_master_address, jetton_wallet_code));
|
|
}
|
|
|