Skip to main content
Version: v1.2

IEAS

An interface to the EAS contract.

Attestation

struct Attestation {
bytes32 uid;
bytes32 schema;
uint64 time;
uint64 expirationTime;
uint64 revocationTime;
bytes32 refUID;
address recipient;
address attester;
bool revocable;
bytes data;
}

getAttestation

function getAttestation(bytes32 uid) external view returns (struct IEAS.Attestation)

Get an attestation by its unique identifier.

Parameters

NameTypeDescription
uidbytes32The unique identifier of the attestation.

Return Values

NameTypeDescription
[0]struct IEAS.Attestationattestation The attestation.