hello, I have a question regarding authentication.
import {
initDataRaw as _initDataRaw,
initDataState as _initDataState,
useSignal,
} from '@telegram-apps/sdk-react'
// and then in my function component, I get the raw data
const initDataRaw = useSignal(_initDataRaw);
my question is, this initDataRaw includes a parameter called "signature" as well. When I go through the process of authenticating in my server using my bot token, do I exclude the signature the same as "key" parameter, or do I include it?