@client.command()
async def give(ctx, member: discord.Member):
await open_account(ctx.author)
user = ctx.author
users = await get_bank_data()
earnings = random.randrange(1000000)
await ctx.send(f'{ctx.author.mention} Got {earnings} coins!!')
users[str(user.id)]["wallet"] += earnings
with open("mainbank.json",'w') as f:
json.dump(users,f)