Get attestations
특정 주소의 모든 증명인(인증된 데이터)을 가져온다.
신분 및 실명 인증, 이력 조회, 원산지 이력 등록 등에 활용될 수 있다.
Example
const params = {
address: 'ULQA63NGEZACP4N7ZMBUBISH6ZTCUS2Q'
};
client.api.getAttestations(params, function(err, result) {
console.log(result);
});Returns
[
{
unit: 'ekUq+0FW1uf1Bm1Dos7epi6AdWy2+m8CTOzU5/04y84=',
attestor_address: 'I2ADHGP4HL6J37NQAD73J7E5SKFIXJOT',
profile: {
profile_hash: 'cyZ7L8pPE4Df7pqH4jKtpuaB2SLEy2HR/K2rBGLRzYM=',
user_id: 'd4wISqCAUd1yDv2FGyjQD/+Xe+l7GGGtuxzxlpKayfk='
}
},
{
unit: '0miOAkbyv40DGVyJToxWroyoiJ+xhOnDb1aTbF6YXR8=',
attestor_address: 'C4O37BFHR46UP6JJ4A5PA5RIZH5IFPZF',
profile: {
nonus: 1
}
},
{
unit: '7SEJqVRpog8Ezn5A3PSDX+h3iIYMfJaUsozoUlrsm+o=',
attestor_address: 'H5EZTQE7ABFH27AUDTQFMZIALANK6RBG',
profile: {
email: '[email protected]',
user_id: 'uyeABSHzEgArC14L504vKgza+BmpgXlemnkDpyFC0mA='
}
}
]Last updated
Was this helpful?