diff --git a/docs/build/apps/example-application-tutorial/account-creation.mdx b/docs/build/apps/example-application-tutorial/account-creation.mdx index 43776881e7..aa331dad61 100644 --- a/docs/build/apps/example-application-tutorial/account-creation.mdx +++ b/docs/build/apps/example-application-tutorial/account-creation.mdx @@ -15,13 +15,13 @@ Since we are building a [non-custodial application], the encrypted secret key wi ::: -![public and private keys](/assets/public-and-private-keys.png) +![public and private keys](/assets/basic-pay/public-and-private-keys.png) Next, we'll trigger the user to submit a pincode to encrypt their secret key before it gets saved to their browser's `localStorage` (this is handled by the [`js-stellar-wallets` SDK]). The user will need to remember their pincode for future logins and to submit transactions. With BasicPay, when the user clicks the “Signup” button, they will be asked to confirm their pincode. When they do, the `create_account` operation is triggered, and the user's account is automatically funded with XLM for the minimum balance (starting with 10,000 XLM). -![funded account](/assets/funded-account.png) +![funded account](/assets/basic-pay/funded-account.png) When you're ready to move the application to Pubnet, accounts will need to be funded with real XLM. This is something the application can cover itself by depositing XLM into the user's account, with the use of [sponsored reserves], or the user can cover the required balance with their own XLM. diff --git a/docs/build/apps/example-application-tutorial/anchor-integration/sep10.mdx b/docs/build/apps/example-application-tutorial/anchor-integration/sep10.mdx index 114d853a04..538df3925b 100644 --- a/docs/build/apps/example-application-tutorial/anchor-integration/sep10.mdx +++ b/docs/build/apps/example-application-tutorial/anchor-integration/sep10.mdx @@ -3,7 +3,7 @@ title: "SEP-10: Stellar Web Authentication" sidebar_position: 20 --- -import auth_valid from "/assets/auth_valid.png"; +import auth_valid from "/assets/basic-pay/auth_valid.png"; Similar to the SEP-1 information, both SEP-6 and SEP-24 protocols make use of SEP-10 for authentication with the user. The user must prove they own the account before they can withdraw or deposit any assets as part of SEP-10: Stellar Web Authentication. @@ -58,7 +58,7 @@ The `/src/routes/dashboard/transfers/+page.svelte` is doing **a lot** of work th Now, when the user clicks the "authenticate" button, it triggers the `auth` function. -![authenticate](/assets/authenticate.png) +![authenticate](/assets/basic-pay/authenticate.png) ```html title=/src/routes/dashboard/transfers/+page.svelte