diff --git a/devuser_guide/.github/ISSUE_TEMPLATE/bug-report---.md b/devuser_guide/.github/ISSUE_TEMPLATE/bug-report---.md deleted file mode 100644 index 6a8b3a848d..0000000000 --- a/devuser_guide/.github/ISSUE_TEMPLATE/bug-report---.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: "Bug report \U0001F41E" -about: Create a report to help us improve - ---- - -## Description - -Describe the issue that you're seeing. - -### Steps to reproduce - -Clear steps describing how to reproduce the issue. Please please please link to a demo project if possible, this makes your issue _much_ easier to diagnose (seriously). - -### Expected result - -What should happen? - -### Actual result - -What happened. - -### Environment - -Paste the information here as shown by `npm run check` diff --git a/devuser_guide/.github/ISSUE_TEMPLATE/config.yml b/devuser_guide/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index e3766187de..0000000000 --- a/devuser_guide/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,4 +0,0 @@ -contact_links: - - name: Question 🙋 - url: https://github.com/h-enk/doks/discussions/categories/q-a - about: Ask your question in Doks Discussions \ No newline at end of file diff --git a/devuser_guide/.github/ISSUE_TEMPLATE/feature-request---.md b/devuser_guide/.github/ISSUE_TEMPLATE/feature-request---.md deleted file mode 100644 index 74da274c41..0000000000 --- a/devuser_guide/.github/ISSUE_TEMPLATE/feature-request---.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: "Feature request \U0001F680" -about: Suggest an idea for Doks - ---- - -## Summary - -Brief explanation of the feature. - -### Basic example - -Include a basic example or links here. - -### Motivation - -Why are we doing this? What use cases does it support? What is the expected outcome? diff --git a/devuser_guide/.github/dependabot.yml b/devuser_guide/.github/dependabot.yml deleted file mode 100644 index 8abca405fb..0000000000 --- a/devuser_guide/.github/dependabot.yml +++ /dev/null @@ -1,11 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - - package-ecosystem: "npm" # See documentation for possible values - directory: "/" # Location of package manifests - schedule: - interval: "daily" diff --git a/devuser_guide/.github/workflows/codeql-analysis.yml b/devuser_guide/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 0f02f7c79b..0000000000 --- a/devuser_guide/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,62 +0,0 @@ -# For most projects, this workflow file will not need changing; you simply need -# to commit it to your repository. -# -# You may wish to alter this file to override the set of languages analyzed, -# or to provide custom queries or build logic. -name: "CodeQL" - -on: - push: - branches: [master] - pull_request: - # The branches below must be a subset of the branches above - branches: [master] - schedule: - - cron: '0 11 * * 5' - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - - strategy: - fail-fast: false - matrix: - # Override automatic language detection by changing the below list - # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] - language: ['javascript'] - # Learn more... - # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v1 - with: - languages: ${{ matrix.language }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - # queries: ./path/to/local/query, your-org/your-repo/queries@main - - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). - # If this step fails, then you should remove it and run the build manually (see below) - - name: Autobuild - uses: github/codeql-action/autobuild@v1 - - # ℹī¸ Command-line programs to run using the OS shell. - # 📚 https://git.io/JvXDl - - # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines - # and modify them (or add more) to build your code if your project - # uses a compiled language - - #- run: | - # make bootstrap - # make release - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 diff --git a/devuser_guide/.github/workflows/node.js-ci.yml b/devuser_guide/.github/workflows/node.js-ci.yml deleted file mode 100644 index fce41fcd5b..0000000000 --- a/devuser_guide/.github/workflows/node.js-ci.yml +++ /dev/null @@ -1,48 +0,0 @@ -# Test and build your Hyas project -# For more information see: https://henkverlinde.com/continuous-integration-workflow-for-your-hyas-project/ - -name: Hyas CI - -on: - push: - branches: [master] - pull_request: - branches: [master] - -jobs: - build: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - node-version: [14.x, 15.x] - - steps: - - uses: actions/checkout@v2 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - - name: Install Hugo - uses: peaceiris/actions-hugo@v2 - with: - hugo-version: 'latest' - extended: true - - - name: Check install Hugo - run: hugo version - - - name: Install dependencies - run: npm ci - - - name: Check for linting errors - run: npm test - - - name: Delete temporary directories - run: npm run clean - - - name: Build production website - run: npm run build diff --git a/devuser_guide/.github/workflows/readme.yml b/devuser_guide/.github/workflows/readme.yml deleted file mode 100644 index 9b40ec79ee..0000000000 --- a/devuser_guide/.github/workflows/readme.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Readme - -on: - schedule: - - cron: 0 18 * * * - push: - branches: - - master - -jobs: - update: - runs-on: ubuntu-latest - steps: - - uses: JasonEtco/rss-to-readme@v1 - with: - feed-url: https://getdoks.org/blog/index.xml - readme-section: feed \ No newline at end of file diff --git a/devuser_guide/config/_default/menus.toml b/devuser_guide/config/_default/menus.toml index 553541b97e..1f94249dcb 100644 --- a/devuser_guide/config/_default/menus.toml +++ b/devuser_guide/config/_default/menus.toml @@ -4,18 +4,30 @@ identifier = "prologue" url = "/docs/prologue/" -[[docs]] - name = "Test" - weight = 10 - identifier = "test" - url = "/docs/test/" - [[docs]] name = "Browser" weight = 11 identifier = "browser" url = "/docs/browser/" +[[docs]] + name = "Timelines" + weight = 11 + identifier = "timelines" + url = "/docs/timelines/" + +[[docs]] + name = "Chat" + weight = 11 + identifier = "chat" + url = "/docs/chat/" + +[[docs]] + name = "Wallet" + weight = 11 + identifier = "wallet" + url = "/docs/wallet/" + [[dev]] name = "Browser" weight = 11 diff --git a/devuser_guide/content/dev_guide/browser/favourites.md b/devuser_guide/content/dev_guide/browser/favourites.md index b63e4c1f9a..3f064dad17 100644 --- a/devuser_guide/content/dev_guide/browser/favourites.md +++ b/devuser_guide/content/dev_guide/browser/favourites.md @@ -20,11 +20,11 @@ key source file: [`src/status/libstatus/browser.nim`](https://github.com/status- key source file: [`src/app/browser/view.nim`](https://github.com/status-im/status-desktop/blob/d2b6bf9310df088c89abcca7c1df42abc3999b18/src/app/browser/view.nim#L46) -#### with the Star icon +### with the Star icon key source file: [`ui/app/AppLayouts/Browser/BrowserHeader.qml`](https://github.com/status-im/status-desktop/blob/17b3a444589725f1723bda8549623e14a0277b2d/ui/app/AppLayouts/Browser/BrowserHeader.qml#L155) -#### with the Add favourite button +### with the Add favourite button key source file: [`ui/app/AppLayouts/Browser/FavoritesList.qml`](https://github.com/status-im/status-desktop/blob/d2b6bf9310df088c89abcca7c1df42abc3999b18/ui/app/AppLayouts/Browser/FavoritesList.qml#L39) @@ -40,11 +40,11 @@ key source file: [`src/app/browser/view.nim`](https://github.com/status-im/statu key source file: [`src/app/browser/views/bookmark_list.nim`](https://github.com/status-im/status-desktop/blob/17b3a444589725f1723bda8549623e14a0277b2d/src/app/browser/views/bookmark_list.nim#L5) -#### In the Toolbar +### In the Toolbar key source file: [`ui/app/AppLayouts/Browser/FavoritesBar.qml`](https://github.com/status-im/status-desktop/blob/d2b6bf9310df088c89abcca7c1df42abc3999b18/ui/app/AppLayouts/Browser/FavoritesBar.qml#L12) -#### in the blank page +### In the blank page key source file: [`ui/app/AppLayouts/Browser/BrowserLayout.qml`](https://github.com/status-im/status-desktop/blob/d2b6bf9310df088c89abcca7c1df42abc3999b18/ui/app/AppLayouts/Browser/BrowserLayout.qml#L670) diff --git a/devuser_guide/content/docs/browser/favourites.md b/devuser_guide/content/docs/browser/favourites.md index 08cbb1957d..c19fc76f73 100644 --- a/devuser_guide/content/docs/browser/favourites.md +++ b/devuser_guide/content/docs/browser/favourites.md @@ -18,7 +18,7 @@ toc: true There are two ways to add a favourite. -#### Star icon +### Star icon Click the star icon ![url_bar](/images/browser/url_bar.png) @@ -27,7 +27,7 @@ A dialog will open, confirm the details and click "Done" ![star_modal](/images/browser/star_modal.png) -#### Add favourite button +### Add favourite button Another way to add a favourite is through the Add Favourite button in a blank tab ![add_favourite](/images/browser/add_favourite.png) diff --git a/devuser_guide/content/docs/test/_index.md b/devuser_guide/content/docs/chat/_index.md similarity index 72% rename from devuser_guide/content/docs/test/_index.md rename to devuser_guide/content/docs/chat/_index.md index e12dc94642..d552f56a3b 100644 --- a/devuser_guide/content/docs/test/_index.md +++ b/devuser_guide/content/docs/chat/_index.md @@ -1,6 +1,6 @@ --- -title : "test" -description: "Docs Doks." +title : "Chat" +description: "Status Chat" lead: "" date: 2020-10-06T08:48:23+00:00 lastmod: 2020-10-06T08:48:23+00:00 diff --git a/devuser_guide/content/docs/chat/chat_list.md b/devuser_guide/content/docs/chat/chat_list.md new file mode 100644 index 0000000000..5ff61731cd --- /dev/null +++ b/devuser_guide/content/docs/chat/chat_list.md @@ -0,0 +1,20 @@ +--- +title : "Chat List" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "chat" +toc: true +--- + +## Search for a Chat +## Suggested Channels +## Badges +### unread message counter +### mentions @ +## Context menu diff --git a/devuser_guide/content/docs/chat/chats_general.md b/devuser_guide/content/docs/chat/chats_general.md new file mode 100644 index 0000000000..30ba4ce074 --- /dev/null +++ b/devuser_guide/content/docs/chat/chats_general.md @@ -0,0 +1,20 @@ +--- +title : "General" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "chat" +toc: true +--- + +## Actions +### Mute a chat +### Mark as Read +### Fetch Messages +### Clear History +### leaving a chat diff --git a/devuser_guide/content/docs/chat/communities.md b/devuser_guide/content/docs/chat/communities.md new file mode 100644 index 0000000000..15f501d084 --- /dev/null +++ b/devuser_guide/content/docs/chat/communities.md @@ -0,0 +1,28 @@ +--- +title : "Communities" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "chat" +toc: true +--- + +## General +### Joining a community +### Creating a community +### Leaving a community +## Manage Community +### Creating Channels +#### Public Channels +#### Private Channels +### Transfer ownership +### Share Community +### See Members +### Kick Member +### Invite People +### Back up Community diff --git a/devuser_guide/content/docs/chat/emojis_selector.md b/devuser_guide/content/docs/chat/emojis_selector.md new file mode 100644 index 0000000000..86a0d5a1d7 --- /dev/null +++ b/devuser_guide/content/docs/chat/emojis_selector.md @@ -0,0 +1,20 @@ +--- +title : "Emojis Selector" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "chat" +toc: true +--- + +#### Choosing an emoji +#### Searching for an Emojis +#### Categories +#### See also + +Text Input Box diff --git a/devuser_guide/content/docs/chat/group_chats.md b/devuser_guide/content/docs/chat/group_chats.md new file mode 100644 index 0000000000..8b0b483943 --- /dev/null +++ b/devuser_guide/content/docs/chat/group_chats.md @@ -0,0 +1,20 @@ +--- +title : "Group Chats" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "chat" +toc: true +--- + +#### Starting a group chat +#### Group Information +#### Adding Members +#### Removing Members +#### Make other members admin +#### Renaming Group diff --git a/devuser_guide/content/docs/chat/input_box.md b/devuser_guide/content/docs/chat/input_box.md new file mode 100644 index 0000000000..1a90e213e3 --- /dev/null +++ b/devuser_guide/content/docs/chat/input_box.md @@ -0,0 +1,21 @@ +--- +title : "Text Input Box" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "chat" +toc: true +--- + +#### mentions +#### Emojis +#### code tags +#### markdown +#### Text Formatter +#### Sending file attachments +#### special commands (e.g /shrug) diff --git a/devuser_guide/content/docs/chat/messages.md b/devuser_guide/content/docs/chat/messages.md new file mode 100644 index 0000000000..466c3b5bdd --- /dev/null +++ b/devuser_guide/content/docs/chat/messages.md @@ -0,0 +1,25 @@ +--- +title : "Messages" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "chat" +toc: true +--- + +## Normal Messages +## Stickers +## Images +## URL Unfurling +### Enable Unfurling +## Reactions +## Replying to messages +## profile options +### view profile +### send message + diff --git a/devuser_guide/content/docs/chat/notifications.md b/devuser_guide/content/docs/chat/notifications.md new file mode 100644 index 0000000000..0e35c15955 --- /dev/null +++ b/devuser_guide/content/docs/chat/notifications.md @@ -0,0 +1,16 @@ +--- +title : "Notifications" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "chat" +toc: true +--- + +## notification types +## notification settings diff --git a/devuser_guide/content/docs/chat/one_on_one.md b/devuser_guide/content/docs/chat/one_on_one.md new file mode 100644 index 0000000000..4e5110eb9f --- /dev/null +++ b/devuser_guide/content/docs/chat/one_on_one.md @@ -0,0 +1,23 @@ +--- +title : "1 on 1 Chats" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "chat" +toc: true +--- + +## sending images +## transactions +### send transaction +### request payment +## start new 1 on 1 Chat +### with existing contact +### by ENS username +### by chat key +## join or start a public chat diff --git a/devuser_guide/content/docs/chat/stickers.md b/devuser_guide/content/docs/chat/stickers.md new file mode 100644 index 0000000000..7410de11d7 --- /dev/null +++ b/devuser_guide/content/docs/chat/stickers.md @@ -0,0 +1,19 @@ +--- +title : "Stickers" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "chat" +toc: true +--- + +## Choosing a Sticker +### Recently used Stickers +### Sticker collections +## Getting free Stickers +## Buying a sticker pack diff --git a/devuser_guide/content/docs/test/test2.md b/devuser_guide/content/docs/test/test2.md deleted file mode 100644 index 00c54e066e..0000000000 --- a/devuser_guide/content/docs/test/test2.md +++ /dev/null @@ -1,118 +0,0 @@ ---- -title: "test25" -description: "Doks comes with commands for common tasks." -lead: "Doks comes with commands for common tasks." -date: 2020-10-13T15:21:01+02:00 -lastmod: 2020-10-13T15:21:01+02:00 -draft: false -images: [] -menu: - docs: - parent: "test" -weight: 130 -toc: true ---- - -{{< alert icon="💡" text="You can change the commands in the scripts section of `./package.json`." >}} - -## create - -Create new content for your site: - -{{< btn-copy text="npm run create" >}} - -```bash -npm run create [path] [flags] -``` - -See also the Hugo docs: [hugo new](https://gohugo.io/commands/hugo_new/). - -## lint - -Check scripts, styles, and markdown for errors: - -{{< btn-copy text="npm run lint" >}} - -```bash -npm run lint -``` - -### scripts - -Check scripts for errors: - -{{< btn-copy text="npm run lint:scripts" >}} - -```bash -npm run lint:scripts [-- --fix] -``` - -### styles - -Check styles for errors: - -{{< btn-copy text="npm run lint:styles" >}} - -```bash -npm run lint:styles [-- --fix] -``` - -### markdown - -Check markdown for errors: - -{{< btn-copy text="npm run lint:markdown" >}} - -```bash -npm run lint:markdown [-- --fix] -``` - -## clean - -Delete temporary directories: - -{{< btn-copy text="npm run clean" >}} - -```bash -npm run clean -``` - -## start - -Start local development server: - -{{< btn-copy text="npm run start" >}} - -```bash -npm run start -``` - -## build - -Build production website: - -{{< btn-copy text="npm run build" >}} - -```bash -npm run build -``` - -### functions - -Build Lambda functions: - -{{< btn-copy text="npm run build:functions" >}} - -```bash -npm run build:functions -``` - -### preview - -Build production website including draft and future content: - -{{< btn-copy text="npm run build:preview" >}} - -```bash -npm run build:preview -``` diff --git a/devuser_guide/content/docs/timelines/_index.md b/devuser_guide/content/docs/timelines/_index.md new file mode 100644 index 0000000000..225997288b --- /dev/null +++ b/devuser_guide/content/docs/timelines/_index.md @@ -0,0 +1,10 @@ +--- +title : "Timelines" +description: "Status Timelines" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +--- + diff --git a/devuser_guide/content/docs/timelines/posting_updates.md b/devuser_guide/content/docs/timelines/posting_updates.md new file mode 100644 index 0000000000..724697d1f2 --- /dev/null +++ b/devuser_guide/content/docs/timelines/posting_updates.md @@ -0,0 +1,13 @@ +--- +title : "Posting Updates" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "timelines" +toc: true +--- diff --git a/devuser_guide/content/docs/timelines/viewing_updates.md b/devuser_guide/content/docs/timelines/viewing_updates.md new file mode 100644 index 0000000000..c39791903b --- /dev/null +++ b/devuser_guide/content/docs/timelines/viewing_updates.md @@ -0,0 +1,19 @@ +--- +title : "Seeing Updates" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "timelines" +toc: true +--- + +## viewing updates + +## fetching more updates + +## default when there are no updates diff --git a/devuser_guide/content/docs/wallet/_index.md b/devuser_guide/content/docs/wallet/_index.md new file mode 100644 index 0000000000..d91c65487f --- /dev/null +++ b/devuser_guide/content/docs/wallet/_index.md @@ -0,0 +1,10 @@ +--- +title : "Wallet" +description: "Status Wallet" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +--- + diff --git a/devuser_guide/content/docs/wallet/account_details.md b/devuser_guide/content/docs/wallet/account_details.md new file mode 100644 index 0000000000..68821517ac --- /dev/null +++ b/devuser_guide/content/docs/wallet/account_details.md @@ -0,0 +1,18 @@ +--- +title : "Account Details & Balances" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "wallet" +toc: true +--- + +## Assets +## Collectibles +## History +## Editing Account name & color diff --git a/devuser_guide/content/docs/wallet/account_list.md b/devuser_guide/content/docs/wallet/account_list.md new file mode 100644 index 0000000000..996a0c1f8a --- /dev/null +++ b/devuser_guide/content/docs/wallet/account_list.md @@ -0,0 +1,14 @@ +--- +title : "Accounts List" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "wallet" +toc: true +--- + diff --git a/devuser_guide/content/docs/wallet/adding_accounts.md b/devuser_guide/content/docs/wallet/adding_accounts.md new file mode 100644 index 0000000000..1ad0fee719 --- /dev/null +++ b/devuser_guide/content/docs/wallet/adding_accounts.md @@ -0,0 +1,18 @@ +--- +title : "Adding Accounts" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "wallet" +toc: true +--- + +## Generating an account +## Adding a watch only address +## Adding an account using a seed phrase +## Adding an account using a private key diff --git a/devuser_guide/content/docs/wallet/receiving_funds.md b/devuser_guide/content/docs/wallet/receiving_funds.md new file mode 100644 index 0000000000..9c1a0e4724 --- /dev/null +++ b/devuser_guide/content/docs/wallet/receiving_funds.md @@ -0,0 +1,14 @@ +--- +title : "Receiving Funds" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "wallet" +toc: true +--- + diff --git a/devuser_guide/content/docs/wallet/sending_funds.md b/devuser_guide/content/docs/wallet/sending_funds.md new file mode 100644 index 0000000000..e53b5222be --- /dev/null +++ b/devuser_guide/content/docs/wallet/sending_funds.md @@ -0,0 +1,16 @@ +--- +title : "Sending funds" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "wallet" +toc: true +--- + +## Choosing Recipient +## Choosing Amounts, Token, gas values diff --git a/devuser_guide/content/docs/wallet/wallet_settings.md b/devuser_guide/content/docs/wallet/wallet_settings.md new file mode 100644 index 0000000000..169fd0719f --- /dev/null +++ b/devuser_guide/content/docs/wallet/wallet_settings.md @@ -0,0 +1,19 @@ +--- +title : "Wallet settings" +description: "" +lead: "" +date: 2020-10-06T08:48:23+00:00 +lastmod: 2020-10-06T08:48:23+00:00 +draft: false +images: [] +menu: + docs: + parent: "wallet" +toc: true +--- + +## Changing currency +## Managing Tokens +### Enabling Tokens +### Disabling Tokens +### Add custom Tokens