Stake
This section describes how to stake.
Overview
In Financial contract there're op-codes OP::SIMPLE_TRANSFER
and OP::STAKE
. They're used to perform staking of TON in the contract, resulting in the creation of a corresponding amount of jettons in exchange for the staked TON. The current pools of jettons and TON are taken into account, allowing the calculation of the amount of jettons to be created dynamically. If the operation is successful, the total supply of jettons and TON is updated, and the newly minted jettons are sent to the user's wallet address.
OP::SIMPLE_TRANSFER
: Calls the mint function with aquery_id
of0
and null for theforward_payload
. It is a simple invocation that doesn’t pass any extra data aside frommsg_value
andfwd_fee
.OP::STAKE
: Calls the mint function with aquery_id
(provided inin_msg_body
), aforward_ton_amount
(specified TON amount to forward) and aforward_payload
(optional cell for forwarding additional data). These parameters enable more complex interactions, such as sending additional data for use in staking-related functions.
When a user stakes a certain amount of TON, the number of jettons to be minted is determined based on the existing jetton and TON pools.
The number of jettons minted is calculated using the formula:
stake_jetton_amount = jetton_total_supply * stake_ton_amount / ton_total_supply
Where:
jetton_total_supply
is the total supply of jettons before staking.ton_total_supply
is the total amount of staked TON before the staking operation.stake_ton_amount
is the amount of TON to be staked after subtracting any relevant fees (int stake_ton_amount = msg_value - get_ton_amount_for_stake(forward_ton_amount, fwd_fee)
).
TL-B scheme for stake message
Steps to verify the result of the staking operation:
To ensure the staking operation was executed correctly, follow these steps:
Check the updated jetton and TON pools:
Verify that the
jetton_total_supply
has increased by thecalculated stake_jetton_amount
.Ensure that the
ton_total_supply
has increased bystake_ton_amount
.
Confirm the transfer of jettons:
The minted jettons should be sent to the user’s jetton wallet address. Verify that the correct amount was transferred.
The transaction should use the
OP::INTERNAL_TRANSFER
, and thequery_id
should match the identifier in the staking request.
Validate any additional data transfers:
If the staking operation included forwarding any additional payload (
forward_payload
), ensure that it was correctly forwarded with the transfer.
Common errors that may occur during processing OP::STAKE
and OP::SIMPLE_TRANSFER
When performing operations in a smart contract, various errors can occur due to incorrect input, insufficient funds, or other issues. To handle these errors effectively, it’s important to understand what kind of errors might arise, how to catch them, and how to determine the underlying issue. Below is a detailed guide on common errors, how to detect them, and troubleshooting strategies.
ERROR::INSUFFICIENT_MSG_VALUE
Cause: This error occurs when the provided message value is less than the required amount to perform the operation. For example, the amount of TON sent may not be enough to cover the staking amount after subtracting fees.
How to Detect: Check if the contract throws this error when the condition
msg_value < required_amount
is true.Troubleshooting: Ensure that the amount sent in the transaction is enough to cover the required fees and the intended operation. Recalculate the required amount based on the operation and include enough extra funds for transaction fees.
ERROR::NOT_BASECHAIN
Cause: This error happens when the message is sent from a non-basechain workchain (i.e., not workchain 0). The contract may be designed to only accept transactions from the main chain.
How to Detect: The contract checks if the sender’s workchain is not equal to 0 and throws this error if true.
Troubleshooting: Ensure that the transaction is being sent from the basechain (workchain = 0). Verify the sender address and ensure that it matches the expected workchain for the operation.
Example of sending stake message using pytoniq
So, to create a payload cell you need to provide the following params:
OP::STAKE
(0x4253c4d5
) - The operation code indicating the type of operation. Represented by a 32-bit unsigned integerquery_id
- A unique identifier for the request, used for tracking the operation. It is a 64-bit unsigned integer that should be unique for each transaction.forward_ton_amount
- The amount of TON to be forwarded in another message or included in the response. This amount is excluded from the staking calculation.forward_payload
- An optional payload that can be included in the message to be forwarded. This data will be passed along with the forwarding message.
Or you can just send tons attached to the empty message to the Financial contract
Let's write a simple code that builds payload cell and sends message to Financial:
Last updated