Creates a transaction instruction to delete a holder account.
The transaction requires the Solana wallet (operator) to sign the instruction to authorize the deletion.
The public key of the Neon EVM program.
The public key of the Solana wallet authorizing the deletion.
The public key of the holder account to be deleted.
A Solana TransactionInstruction to delete the holder account.
TransactionInstruction
const instruction = deleteHolderAccountInstruction( neonEvmProgram, solanaWallet, holderAddress);transaction.add(instruction); Copy
const instruction = deleteHolderAccountInstruction( neonEvmProgram, solanaWallet, holderAddress);transaction.add(instruction);
Creates a transaction instruction to delete a holder account.
The transaction requires the Solana wallet (operator) to sign the instruction to authorize the deletion.