Ecosystem Tools
Usage example
import {getEcosystems} from '@docknetwork/wallet-sdk-core/src/ecosystem-tools';
Fetching Ecosystem Details
To fetch the details of ecosystems associated with a specific issuerDID, you can use the following code snippet:
javascript
Copy code
async function fetchEcosystemDetails() {
const result = await getEcosystems({
issuerDID: 'did:dock:5HLbQLSmirNuZVRsdWKbsgdajw9QTGzSFJABSVzMT5EBj5sb',
});
console.log(result);
}
fetchEcosystemDetails();Expected output
Integration tests
Last updated
Was this helpful?