Hi all, i've got a silly question.
When this is sent in fc
var msg = begin_cell()
.store_uint(0x18, 6)
.store_slice(parent_address)
.store_coins(const::ton_for_fees + const::ton_for_deploy)
.store_uint(0, 1 + 4 + 4 + 64 + 32 + 1 + 1)
.store_uint(1, 32)
.store_uint(query_id, 64)
.store_uint(item_index, 64)
.store_coins(const::ton_for_fees)
.store_ref(nftItemContent);
send_raw_message(msg.end_cell(), 1);
Then when i do this in another contract, how does it know wether to take query_id or item_index, since both of them have 64 bit uint. What am i missing?
int query_id = in_msg_body~load_uint(64);
Bounty ($2) 🫡
Dec 13, 2023, 4:28 AM