/**
 * Maximum commission fee for jetton transactions in TON units.
 * Any excess fee will be returned to the user.
 */
export declare const TOKEN_TRANSFER_MAX_FEE = "0.1";
/**
 * Minimum required balance in TON units.
 * This is the minimum balance required to perform transactions.
 */
export declare const MINIMUM_REQUIRED_BALANCE = "0.02";
/**
 * Forward amount for token transfers in nanoTON units.
 */
export declare const TOKEN_TRANSFER_FORWARD_AMOUNT = 1;
/**
 * Query ID for token transfers.
 */
export declare const TOKEN_TRANSFER_QUERY_ID = 0;
/**
 * Maximum allowed bytes for a comment in a transaction.
 * Comments exceeding this limit will be considered invalid.
 */
export declare const MAX_COMMENT_BYTES = 120;
export declare enum JettonOpCode {
    Transfer = 260734629,
    TransferNotification = 1935855772,
    InternalTransfer = 395134233,
    Excesses = 3576854235,
    Burn = 1499400124,
    BurnNotification = 2078119902
}
//# sourceMappingURL=constants.d.ts.map