Get attestations

Get all attestations of a specific address.

const params = {
  address: 'ULQA63NGEZACP4N7ZMBUBISH6ZTCUS2Q'
};

client.request('light/get_attestations', params, function(err, result) {
  console.log(result);
});

Last updated