Hash an allow list entry for use in a MerkleTree
function hashAllowListEntry( snapshotEntry: { address: string; currencyAddress?: string; maxClaimable: string; price?: string; }, tokenDecimals: number, version: SnapshotFormatVersion,): string;
the entry to hash
let snapshotEntry: { address: string; currencyAddress?: string; maxClaimable: string; price?: string;};
optional decimals for the token to claim (default 18)
let tokenDecimals: number;
optional version of the snapshot format (default V1)
let version: SnapshotFormatVersion;
let returnType: string;