Skip to content

Commit

Permalink
Merge pull request #1547 from erenjaegar77/add-new-merkl-campaing
Browse files Browse the repository at this point in the history
Update/ Add new zap-v3 merkl campaign
  • Loading branch information
ReflectiveChimp authored Sep 11, 2024
2 parents c3eef29 + 689fdbf commit 7cab6a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/api/offchain-rewards/providers/merkl/MerklProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ const campaignCreatorToType: Record<Address, CampaignTypeSetting> = {
optimism: 'op-gov-fund',
default: 'external', // we do not own this address on other chains
},
'0x55A0f096EA315C93809D9a1D5E3667f6dae3fB15': {
base: 'zap-v3',
default: 'external', // we do not own this address on other chains
},
};

export class MerklProvider implements IOffchainRewardProvider {
Expand Down
2 changes: 1 addition & 1 deletion src/api/offchain-rewards/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export type CampaignVault = Vault & {
apr: number;
};

export type BeefyCampaignType = 'test' | 'arb-ltipp' | 'op-gov-fund' | 'other';
export type BeefyCampaignType = 'test' | 'arb-ltipp' | 'op-gov-fund' | 'zap-v3' | 'other';
export type ExternalCampaignType = 'external';
export type CampaignType = BeefyCampaignType | ExternalCampaignType;

Expand Down

0 comments on commit 7cab6a6

Please sign in to comment.