Delete
You can delete resources by deleting the CloudFormation stack.
All data within SPV Wallet will be deleted.
Manual delete is required for log groups.
WARNING Deleting the deployment will result in TOTAL LOSS OF FUNDS held by all accounts in the wallet. Although users should keep their 12 word mnemonics displayed at the time of account creation, in practice this is often skipped, and there is no way to even know which transactions belong to the user thereafter, nevermind regaining control of the funds. Please ensure all funds are sent out of hosted wallets, and a record of all transactions has been exported prior to deletion of the deployment.

Step 1
Open AWS console -> Cloud Formation -> Stacks
Step 2
Make sure you're in the same region you chose in Step 3 of installation
Step 3
Click your top level stack, the one without the NESTED badge.
Step 4
Click the Delete button at the top right.
Step 5
Confirm that you want to delete the stack.
WARNING Deleting the deployment will result in TOTAL LOSS OF FUNDS held by all accounts in the wallet. Although users should keep their 12 word mnemonics displayed at the time of account creation, in practice this is often skipped, and there is no way to even know which transactions belong to the user thereafter, nevermind regaining control of the funds. Please ensure all funds are sent out of hosted wallets, and a record of all transactions has been exported prior to deletion of the deployment.
Step 6
Wait until status of the stack will reach the value DELETE_COMPLETE
Step 1
Make sure you have AWS CLI installed and authenticated
Step 2
Replace variables described below with previously chosen options in the following command and run it to delete the stack.
WARNING Deleting the deployment will result in TOTAL LOSS OF FUNDS held by all accounts in the wallet. Although users should keep their 12 word mnemonics displayed at the time of account creation, in practice this is often skipped, and there is no way to even know which transactions belong to the user thereafter, nevermind regaining control of the funds. Please ensure all funds are sent out of hosted wallets, and a record of all transactions has been exported prior to deletion of the deployment.
aws cloudformation delete-stack --stack-name ${Stack_Name} --region ${AWS_Region}Where:
- ${Stack_Name} - is the stack name chosen during installation process 
- ${AWS_Region} - is the region where the stack was installed 
Step 3
Check the status of the stack (wait until following command will return error that stack dosn't exist)
aws cloudformation describe-stacks --stack-name ${Stack_Name} --region ${AWS_Region}Last updated
