SDK Reference
Methods
Deprecated
GetDids

getDids

⚠️

This is a legacy method related to 3ID DIDs. Profiles and DIDs currently have a 1:1 mapping on Orbis.


Returns an array of dids and profile details created by a specific wallet address.

How to use?

const { data, error } = await orbis.getDids(address);

Parameters

  • address - wallet address whose DIDs you're querying

Returns

[
  {
    did: "did:pkh:...",
    details: {
      did: "did:pkh:...",
      profile: {
        username: "Baptiste",
        description: "",
        pfp: "https://..."
      }
    },
    count_followers: 132,
    count_following: 31,
    last_activity_timestamp: 1656580635
  },
  ...
]