Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Image size fix #63

Merged
merged 2 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started/Examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ That said, we have built out several example services and applications to help i
| [`demo-ethers-passkeys`](https://github.com/tkhq/demo-ethers-passkeys) | A NextJS app that demonstrates how to use `@turnkey/ethers` to build a passkey-powered application |
| [`demo-viem-passkeys`](https://github.com/tkhq/demo-viem-passkeys) | A NextJS app that demonstrates how to use `@turnkey/viem` to build a passkey-powered application |
| [`deployer`](https://github.com/tkhq/sdk/tree/main/examples/deployer/) | Compile and deploy a smart contract |
| [`email-recovery`](https://github.com/tkhq/sdk/tree/main/examples/email-recovery/) | A NextJS app that demonstrates how to use `@turnkey/iframe-stamper` to perform email |
| [`email-recovery`](https://github.com/tkhq/sdk/tree/main/examples/email-recovery/) | A NextJS app that demonstrates how to use `@turnkey/iframe-stamper` to perform email recovery |
| [`rebalancer`](https://github.com/tkhq/sdk/tree/main/examples/rebalancer/) | A demo application which showcases an example of how to use Turnkey for managing multiple types of keys & users |
| [`sweeper`](https://github.com/tkhq/sdk/tree/main/examples/sweeper/) | Sweep funds from one address to a different address |
| [`trading-runner`](https://github.com/tkhq/sdk/tree/main/examples/trading-runner/) | A sample application demonstrating a trading operation, using various private keys, users, and policies, powered by Uniswap |
Expand Down
6 changes: 3 additions & 3 deletions docs/integration-guides/export-wallets.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ In the rest of this guide we'll assume you are using these helpers.
Here's a diagram summarizing the wallet export flow step-by-step ([direct link](/img/wallet_export_steps.png)):

<p style={{ textAlign: "center" }}>
<img src="/img/wallet_export_steps.png" alt="wallet export steps" height="200" />
<img src="/img/wallet_export_steps.png" alt="wallet export steps" height="200px" />
</p>

Let's review these steps in detail:
Expand Down Expand Up @@ -75,7 +75,7 @@ Let's review these steps in detail:
Export is complete! The iframe now displays a numbered 3-column grid of words that form the mnemonic, directly to your end user.

<p style={{ textAlign: "center" }}>
<img src="/img/wallet_export_mnemonic.png" alt="wallet mnemonic" height="280" />
<img src="/img/wallet_export_mnemonic.png" alt="wallet mnemonic" height="280px" />
</p>

The exported wallet will remain stored within Turnkey’s infrastructure. In your Turnkey dashboard, the exported user Wallet will be flagged as “Exported”.
Expand Down Expand Up @@ -113,7 +113,7 @@ It works by anchoring export in a **target encryption key** (TEK). This target e
The following diagram summarizes the flow:

<p style={{ textAlign: "center" }}>
<img src="/img/wallet_export_cryptography.png" alt="export cryptography" height="320" />
<img src="/img/wallet_export_cryptography.png" alt="export cryptography" height="320px" />
</p>

The public part of this key pair is passed as a parameter inside of a signed `EXPORT_WALLET` or `EXPORT_PRIVATE_KEY` activity.
Expand Down