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

SDK - Exchange Guide - Add Python and Rust Code #1064

Merged
merged 4 commits into from
Jul 26, 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
4 changes: 2 additions & 2 deletions next/docs/introduction-docs/docs/how_tos/backup_security.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords:
- how to
---

# Backup and Security
# Back Up and Security

## Security Checklist

Expand All @@ -28,7 +28,7 @@ keywords:
- Don't use SQLite.
- Don't store passwords and backups on the same device.

## How to Backup Your Account
## How to Back Up Your Account

You can use a copy of the `stronghold.snapshot` file as a backup. You can implement a [_cronjob_](https://linux.die.net/man/1/crontab), [_rsync_](https://linux.die.net/man/1/rsync) or [_scp_](https://linux.die.net/man/1/scp) with a date-time suffix to periodically back up your account.

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"@docusaurus/core": "2.4.1",
"@docusaurus/plugin-client-redirects": "2.4.1",
"@docusaurus/preset-classic": "2.4.1",
"@docusaurus/remark-plugin-npm2yarn": "^2.4.1",
"@iota-wiki/plugin-tutorial": "workspace:^",
"@mdx-js/react": "^1.6.21",
"@popperjs/core": "^2.11.5",
Expand Down
3 changes: 3 additions & 0 deletions shimmer/contentPlugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ module.exports = [
path: path.resolve(__dirname, 'docs/iota-sdk/docs'),
routeBasePath: 'iota-sdk',
sidebarPath: require.resolve('./docs/iota-sdk/sidebars.js'),
remarkPlugins: [
[require('@docusaurus/remark-plugin-npm2yarn'), { sync: true }],
],
//overriding default exclude array to include the python api's classes with _ at the beginning
//but still exclude any _admonitions
exclude: [
Expand Down
4 changes: 2 additions & 2 deletions shimmer/develop/how-tos/backup_security.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords:
- how to
---

# Backup and Security
# Back Up and Security

## Security Checklist

Expand All @@ -28,7 +28,7 @@ keywords:
- [ ] Don't use SQLite.
- [ ] Don't store passwords and backups on the same device.

## How to Backup Your Account
## How to Back Up Your Account

You can use a copy of the `stronghold.snapshot` file as a backup. You can implement a [_cronjob_](https://linux.die.net/man/1/crontab), [_rsync_](https://linux.die.net/man/1/rsync) or [_scp_](https://linux.die.net/man/1/scp) with a date-time suffix to periodically back up your account.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords:
- how to
---

# Backup and Security
# Back Up and Security

## Security Checklist

Expand All @@ -28,7 +28,7 @@ keywords:
- Don't use SQLite.
- Don't store passwords and backups on the same device.

## How to Backup Your Account
## How to Back Up Your Account

You can use a copy of the `stronghold.snapshot` file as a backup. You can implement a [_cronjob_](https://linux.die.net/man/1/crontab), [_rsync_](https://linux.die.net/man/1/rsync) or [_scp_](https://linux.die.net/man/1/scp) with a date-time suffix to periodically back up your account.

Expand Down
15 changes: 1 addition & 14 deletions shimmer/docs/iota-sdk/docs/getting-started/nodejs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,10 @@ import TabItem from '@theme/TabItem';

To start using the IOTA SDK in your Node.js project, you can install the IOTA SDK from your package manager of choice:

<Tabs groupId="nodePackageManager" queryString>
<TabItem value="npm" label="npm">

```sh
```bash npm2yarn
npm i @iota/sdk
```

</TabItem>
<TabItem value="yarn" label="Yarn">

```sh
yarn add @iota/sdk
```

</TabItem>
</Tabs>

### Build the Binding from Source

#### Requirements
Expand Down
Loading