diff --git a/ironfish-cli/src/commands/wallet/notes.ts b/ironfish-cli/src/commands/wallet/notes.ts index 2229a2c4d5..db2b9cb500 100644 --- a/ironfish-cli/src/commands/wallet/notes.ts +++ b/ironfish-cli/src/commands/wallet/notes.ts @@ -46,6 +46,9 @@ export class NotesCommand extends IronfishCommand { sender: { header: 'Sender', }, + noteHash: { + header: 'Note Hash', + }, transactionHash: { header: 'From Transaction', }, diff --git a/ironfish/src/rpc/routes/wallet/getNotes.ts b/ironfish/src/rpc/routes/wallet/getNotes.ts index 7653b393bd..9ef383fe00 100644 --- a/ironfish/src/rpc/routes/wallet/getNotes.ts +++ b/ironfish/src/rpc/routes/wallet/getNotes.ts @@ -14,6 +14,7 @@ export type GetAccountNotesStreamResponse = { assetName: string memo: string sender: string + noteHash: string transactionHash: string spent: boolean | undefined } @@ -33,6 +34,7 @@ export const GetAccountNotesStreamResponseSchema: yup.ObjectSchema