const timestamp = Date.now().toString();
const hmac = generateHmacSignature(timestamp, {}, secretKey);
const response = await axios.get(apiEndpoint + '/game/allowance/' + plyrId + '/' + gameId + '/' + tokenName, {
headers: {
apikey: apiKey,
signature: hmac,
timestamp: timestamp
}
});
const allowance = response.data.data.allowance;
const expiresAt = response.data.data.expiresAt;