Skip to content

Commit

Permalink
chore: Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Alan Shaw <[email protected]>
  • Loading branch information
olizilla and Alan Shaw authored Jan 11, 2024
1 parent 657b73f commit 84b5b6b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ w3 up recipies.txt
- [`w3 proof add`](#w3-proof-add-proofucan)
- [`w3 proof ls`](#w3-proof-ls)
- Key management
- [`w3 key create`](#w3-key-create)
- [`w3 key create`](#w3-key-create)
- Advanced usage
- [`w3 can space info`](#w3-can-space-info-did) <sup>coming soon!</sup>
- [`w3 can space recover`](#w3-can-space-recover-email) <sup>coming soon!</sup>
Expand Down Expand Up @@ -135,7 +135,6 @@ register the space with.

- `--email` The email address of the account to associate this space with.
- `--provider` The storage provider to associate with this space.
> By registering your w3up beta Space with [web3.storage](http://web3.storage/), you agree to the w3up beta [Terms of Service](https://console.web3.storage/terms). Until the beta period is over and this migration occurs, uploads to w3up will not appear in your web3.storage account (and vice versa), even if you register with the same email.

### `w3 space use <did>`

Expand Down
2 changes: 1 addition & 1 deletion bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ cli

cli
.command('key create')
.describe('Print a new key pair. Does not change your current signing key')
.describe('Generate and print a new ed25519 key pair. Does not change your current signing key.')
.option('--json', 'output as json')
.action(createKey)

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,6 @@ export async function createKey({ json }) {
console.log(dagJSON.stringify(signer.toArchive()))
} else {
console.log(`# ${signer.did()}`)
console.log(`${key}`)
console.log(key)
}
}

0 comments on commit 84b5b6b

Please sign in to comment.