Skip to content

Commit

Permalink
feat: add new axelars SC address
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmahidalgo committed Nov 29, 2024
1 parent 77120cc commit 0c5b457
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/modules/analytics/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ import {

// check if the buyer in a sale was a third party provider (to pay with credit card, cross chain, etc)
export function isThirdPartySale(buyer: string): boolean {
if (buyer == '0xed038688ecf1193f8d9717eb3930f0bf0d745cb4' || buyer == '0xea749fd6ba492dbc14c24fe8a3d08769229b896c') {
if (
buyer == '0xed038688ecf1193f8d9717eb3930f0bf0d745cb4' ||
buyer == '0xea749fd6ba492dbc14c24fe8a3d08769229b896c' || // Axelar old SC
buyer == '0xad6cea45f98444a922a2b4fe96b8c90f0862d2f4' // Axelar new SC
) {
return true
}
return false
Expand Down

0 comments on commit 0c5b457

Please sign in to comment.