Skip to main content
It’s good practice to close unneeded accounts. You can only close accounts that you have created and are currently empty.
val options = CloseAccountOption(
	account = "",   //optional
	tokens  = listOf(Token.USDC.mint())
)
val result = Altude.closeAccount(options)
or you can use the advanced version without any options:
val result = Altude.closeAccount()