How to Create Compressed Token Accounts
Short guide to compressed token account creation with ZK Compression on Solana and difference to regular token accounts.
Compressed token accounts store ownership information for compressed tokens like regular token accounts with two core differences. Compressed Tokens
do not require an , and
do not require a rent-exempt balance.
Compressed token accounts are created in the following scenarios:
mintTo()
creates compressed token accounts for recipients.
transfer()
consumes existing accounts of the sender as input, and creates new compressed token accounts with updated balances as output for the sender and recipient(s).
Last updated