/blacklist.txt
Checks if a specific address is present in the blacklist.
address - A valid ETH address to be checked.true if the address is in the blacklist, false otherwise.Example:
fetch('/api/check/0x000b14450b5cfb6b5c1b7311d3186a0cc093dc49')
.then(response => response.json())
.then(data => console.log(data));
Retrieves the entire blacklist.
Example:
fetch('/api/blacklist')
.then(response => response.json())
.then(data => console.log(data));