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

Add documentation for memoHex in RPCS #613

Merged
merged 2 commits into from
Mar 7, 2024
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
5 changes: 4 additions & 1 deletion content/documentation/rpc/wallet/create_transaction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ Creating a raw transaction does not require a spend key. They are not added to t
outputs: {
publicAddress: string
amount: string
memo: string
memo?: string
memoHex?: string
assetId?: string
}[]
mints?: {
Expand All @@ -40,6 +41,8 @@ Creating a raw transaction does not require a spend key. They are not added to t
}
```

> **Note:** outputs.memoHex is a hex-encoded string with a max length of 32 bytes (64 characters)

#### Response

```ts
Expand Down
5 changes: 4 additions & 1 deletion content/documentation/rpc/wallet/send_transaction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Creates a transaction, posts the transaction, and submits it to the wallet, memp
outputs: {
publicAddress: string
amount: string
memo: string
memo?: string
memoHex?: string
assetId?: string
}[]
fee?: string
Expand All @@ -24,6 +25,8 @@ Creates a transaction, posts the transaction, and submits it to the wallet, memp
}
```

> **Note:** outputs.memoHex is a hex-encoded string with a max length of 32 bytes (64 characters)

#### Response

```ts
Expand Down
2 changes: 1 addition & 1 deletion search/indexes/documentation-index.json

Large diffs are not rendered by default.