Skip to content

Commit

Permalink
Add documentation for memoHex in RPCS
Browse files Browse the repository at this point in the history
  • Loading branch information
NullSoldier committed Mar 6, 2024
1 parent c200fbb commit 73273f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
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

0 comments on commit 73273f1

Please sign in to comment.