Skip to content

Commit

Permalink
feat: Allow AVAX and BASE for Holding tier
Browse files Browse the repository at this point in the history
  • Loading branch information
gmolki committed Oct 11, 2024
1 parent c6c5786 commit b2b0b5c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/domain/blockchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,10 @@ export function isBlockchainHoldingCompatible(
): boolean {
if (!blockchain) return false

return [BlockchainId.ETH, BlockchainId.SOL].includes(blockchain)
return [
BlockchainId.ETH,
BlockchainId.AVAX,
BlockchainId.BASE,
BlockchainId.SOL,
].includes(blockchain)
}

0 comments on commit b2b0b5c

Please sign in to comment.