Address Lists
Proto Definition
message AddressList {
string listId = 1;
repeated string addresses = 2;
bool whitelist = 3; // true = whitelist, false = blacklist
string uri = 4;
string customData = 5;
string createdBy = 6;
}Matching Logic
function checkAddress(address, addressList) {
const found = addressList.addresses.includes(address);
return addressList.whitelist ? found : !found;
}Reserved IDs
ID
Logic
Description
Mint Address Handling
Inversion
User-Created Lists
ID Validation
Example
Usage Examples
Performance
Last updated