Skip to content
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

Updated Motoko to [1.2.0](https://github.com/dfinity/motoko/releases/tag/1.2.0)

## Fixes

### fix: correct `dfx sns` example commands in documentation

Fixed incorrect commands `dfx sns config create` and `dfx sns config validate` in the `dfx sns` CLI reference examples. The correct commands are `dfx sns create` and `dfx sns validate`.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dfinityianblenke based on https://github.com/dfinity/dfx-extensions/blob/main/extensions/sns/src/main.rs i don't think those are the correct commands either.


# 0.31.0

### chore!: `dfx generate` now imports `@icp-sdk/core` instead of `@dfinity/` packages
Expand Down
8 changes: 4 additions & 4 deletions docs/cli-reference/dfx-sns.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ dfx sns validate
You can use the `dfx sns validate` command to verify that a configuration template is valid. It is not, it needs details such as token name:

``` bash
dfx sns config create
dfx sns create
```

Fill in the blank fields, then:
``` bash
dfx sns config validate
dfx sns validate
```

## dfx sns deploy
Expand All @@ -92,13 +92,13 @@ dfx sns deploy --network=ic
Create an SNS on the local testnet:

``` bash
dfx sns config create
dfx sns create
```

Fill in the blank fields, then:

``` bash
dfx sns config validate
dfx sns validate
dfx sns deploy
```

Expand Down
Loading