Release VersioningOffline transaction signing

wallet/getNotes

Retrieves notes for the given account. If the account is not specified, the default account will be used.

Supports cursor-based pagination using the pageSize and pageCursor request parameters. Use the nextPageCursor from a response as the value of pageCursor in the next request to retrieve the next page of notes.

Supports filtering notes by any of the fields in the filter request parameter.

Request 

{
  account?: string
  pageSize?: number
  pageCursor?: string
  filter?: {
    value?: string;
    assetId?: string;
    memo?: string;
    sender?: string;
    noteHash?: string;
    transactionHash?: string;
    nullifier?: string;
    spent?: boolean;
    index?: number;
  }
}

Response 

{
  notes: Array<{
    value: string;
    assetId: string;
    assetName: string;
    memo: string;
    sender: string;
    owner: string;
    noteHash: string;
    transactionHash: string;
    index: number | null;
    nullifier: string | null;
    spent: boolean;
  }>
  nextPageCursor: string | null
}

View on Github 

Edit Page on Github

Join our newsletter and stay up to date with privacy and crypto.

Learn

  • FAQ
  • Whitepaper
  • Tokenomics
  • Blog

Use

  • Get Started
  • Node App
  • Mine
  • Block Explorer

Developers

  • Documentation
  • Github

Community

  • Highlights
  • Media
  • Community Wiki
  • Our community

Company

  • About Us
  • Careers
  • Media Kit
  • Contact Us
Privacy Policy

|

Copyright 2023 Iron Fish.