let treasury: Record<string, string> = {};
treasury.firstWallet = "0xEA91B5E687a490380C52d264D5d36558d79F4188".toLowerCase()
for (let wallet in treasury) { ...
With this code I am getting the below, with a little red arrow between 'wallet' and 'in', and a '; expected' under 'wallet'
Compile subgraphERROR TS1110: Type expected.
for (let wallet in treasury) {
So what's wrong with this and what's the proper way to do this?