🧪
Testing
Tips & tricks for testing your application integrations with Picket
There are two scenarios you'll run into when building token-gated apps.
You either (A) have the required tokens or (B) you don't have the required token.
If you hold the token you are using to gate your product, then manual testing is trivial. You can login with your wallet that holds the necessary tokens to pass the token gate and verify everything works as expected. Similarly, you can login with a different wallet that doesn't hold the required tokens and verify you are blocked from accessing the token gated content.
NFTs are typically limited in supply, so it's common to not own the required tokens for every token gated part of your application. This is especially pertinent for application that has separate communities for token holders, like BEB.
The simplest way to test token gated apps, which you don't have the required tokens for, is to use the
allowedWallets
parameter for every login request in your app. Login requirements are always treated as a logical OR, meaning users are allowed if they meet any of the requirements.With
allowedWallets
you can allow your teammates or service accounts to access content that they do not hold the necessary tokens for. You can read more about how to use allowedWallets
in the quick start guide.
Last modified 11mo ago