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

Adds Transfer Funds guide. #81

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
Binary file modified docs/guides/images/enter-testnet-address.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/guides/images/front-page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 54 additions & 0 deletions docs/guides/transfer-funds.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
title: "Transfer funds"
draft: true
---

This page covers how to transfer funds between two addresses. There are several ways to complete a transfer; pick the process that best fits your situation. If you're unsure which process to follow, the [Substrate Explorer](#substrate-explorer) workflow is the easiest.

## Polkadot Substrate Explorer

### Prerequisites

To transfer funds, you must have the following:

- Access to at least 2 [Entropy accounts](./manage-accounts), one of which must have funds.
- Access to the [Polkadot.js explorer](./use-the-explorer).
- A Polkadot.js compatible browser wallet. This guide uses the [Polkadot\{.js\} Browser Extension](https://polkadot.js.org/extension/) as an example.

### Steps

1. Import the addresses into the wallet. In the Polkadot\{.js\} Browser Extension, this can be done by selecting the plus **+** icon and clicking **Import account from pre-existing seed**:

![](./images/transfer-funds-import-accounts.png)

1. Start the Polkadot explorer and connect to the `testnet.entropy.xyz:9944` network.
1. Select the **Accounts** dropdown and click **Accounts**.

![](./images/transfer-funds-accounts-dropdown.png)

1. A popup should display asking if you want to grant the Polkadot Explorer access to your wallet. Click **Yes, allow this application access**.

![](./images/transfer-funds-authorize-application.png)

1. Click **Send** on the account that you want to send funds _from_.
1. Select the account you want to send funds _to_ in the **send to address** dropdown.

![](./images/transfer-funds-select-to-address.png)

1. Enter the number of tokens you want to send. The minimum number you can send is `10000`.
1. Click **Make Transfer**.
1. Review the details on this confirmation page and click **Sign and Submit**.

![](./images/transfer-funds-authorize-transaction.png)

1. Enter your password if prompted, and click **Sign the transaction**.

That's it! The transaction will take up to 6 seconds to transfer funds from one account to another.

## Entropy CLI

The feature is not currently available in the CLI. See [issue #80 in the Entropy Docs repository](https://github.com/entropyxyz/entropy-docs/issues/80) to track the progress of this guide.

## Entropy SDK

The feature is not currently available in the SDK. To track the progress of this upcoming guide, see [issue #81 in the Entropy Docs repository](https://github.com/entropyxyz/entropy-docs/issues/81).
1 change: 1 addition & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export default {
items: [
{ type: 'doc', id: 'guides/manage-accounts', label: 'Manage accounts' },
{ type: 'doc', id: 'guides/get-test-funds', label: 'Get test funds' },
{ type: 'doc', id: 'guides/transfer-funds', label: 'Transfer funds' },
{ type: 'doc', id: 'guides/use-the-explorer', label: 'Use the explorer' },
],
},
Expand Down