Resolution Data Encoding
Encoding Resolution Data in PAL
High-Level Data Structure
abi.encode([uint8, bytes[]], [peaEntries, entries])Structure of Entries Array
// Some code
abi.encode([bytes32, address, PEAMerkleInfo, bytes, bytes], [enrollmentId, projectRegistrarAddress, peaMerkleInfo, peaCertificate, custodyProof])
// Some code
struct PEAMerkleInfo {
uint256 peaIndex;
bytes32 serviceId;
uint256 lockinPeriod;
string tokenUri;
bytes32[] peaProof;
}
struct ManufacturerValidation {
bytes32 enrollmentId;
uint256 mIndex;
bytes32[] manufacturerProof;
}Last updated