Skip to main content

Blacklisting Tokens

Tokens can be blacklisted by address, simply provide a set of address to the NodeKitProvider

export default function AppWrapper() {
// code here
return (
<NodeKitProvider
...
tokenBlacklist={new Set(["0xBadToken", "0xRugpull"])}
...
>
<App />
</NodeKitProvider>
);
}