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
2 changes: 1 addition & 1 deletion docs/content/developer/cryptography/transaction-auth.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Go to [Multisig](transaction-auth/multisig.mdx).

IOTA supports offline signing, which is signing transactions using a device not connected to an IOTA network, or in a wallet implemented in a different programming language without relying on the IOTA key store.

Go to [Offline Signing](transaction-auth/offline-signing.mdx).
Go to [Offline Signing](../ts-sdk/typescript/transaction-building/offline.mdx).

## Intent Signing

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ An accepted pure Ed25519 signature must follow:
1. The signature must be produced according to [RFC 8032](https://www.rfc-editor.org/rfc/rfc8032.html#section-5.1.6). The internal hash used is SHA-512.
1. The signature must be valid according to [ZIP215](https://github.com/zcash/zips/blob/main/zip-0215.rst).

See a concrete example for offline signing using CLI in the [Offline Signing](offline-signing.mdx) topic.
See a concrete example for offline signing using CLI in the [Offline Signing](../../ts-sdk/typescript/transaction-building/offline.mdx) topic.

## Authority signature

Expand Down
15 changes: 15 additions & 0 deletions docs/content/developer/references/cli/keytool.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,21 @@ $ iota keytool sign --data AAABACBRRpLwgknD6ZV3mc4pB0aVhAQiVkv/heQktW3kYpE+DQEBA
╰───────────────┴──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
```

:::note

For a **complete offline-signing workflow**, including:
- serializing unsigned transactions,
- signing them offline using the CLI or the TypeScript SDK,
- decoding and inspecting transactions before signing,
- and submitting signed transactions to the network,

see the **Building Offline** documentation:
[Building Offline (CLI & TypeScript SDK)](../../ts-sdk/typescript/transaction-building/offline.mdx)

That page consolidates the full end-to-end flow and presents **CLI and TypeScript SDK examples side by side**, while this page remains focused on the `keytool` command reference.

:::

## Help

Each command has its own help section. For example `iota keytool sign –help` displays the following prompt:
Expand Down
Loading