Getting Addresses

For a profile to receive digital assets they need a receiving address. every profile has the ability to get millions of receiving addresses.

Here are the properties for generateAddress function:

Each address has metadata such as balance.

Here is an example of getting all the addresses for the organization


import { Oumla } from "@oumla/sdk";

const client = new Oumla({
   apiKey: process.env.API_KEY,
   // Additional options...
});

const address = await client.getAddresses();

console.log(address);

Here is an example of getting all the addresses for a profile


const client = new Oumla({
   apiKey: process.env.API_KEY,
   // Additional options...
});

const address = await client.getAddresses({
     reference: 'dba1fea5-2004-4ea8-a06d-a7c7c5559b8f',
});

console.log(address);

Last updated