Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(gauntlet): updated USDC rewards config for cbETH #11

Merged
merged 2 commits into from
Jul 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions src/market-programs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,13 +253,13 @@ export const marketPrograms: MarketRewardProgramArgs[] = [
// cbETH/USDC 16,000 USDC 06/21/2024 07/20/2024 10am EST
{
start: 1718978400n,
end: 1721401200n,
end: 1721142000n,
fundsSender: "0x874A0A0fc772a32b40e3749ACc3B72f3b0c9b82a",
urdAddress: "0x5400dBb270c956E8985184335A1C62AcA6Ce1333",
tokenAddress: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
marketId: "0xdba352d93a64b17c71104cbddc6aef85cd432322a1446b5b65163cbbc615cd0c",
rewardAmount: {
supply: parseUnits("16000", 6),
supply: parseUnits("14280", 6),
borrow: 0n,
collateral: 0n,
},
Expand Down Expand Up @@ -522,4 +522,19 @@ export const marketPrograms: MarketRewardProgramArgs[] = [
},
chainId: ChainId.BASE,
},
// new cbETH/USDC 16,000 USDC 07/16/2024 07/20/2024 11am EST
{
start: 1721142000n,
end: 1721401200n,
fundsSender: "0x874A0A0fc772a32b40e3749ACc3B72f3b0c9b82a",
urdAddress: "0x5400dBb270c956E8985184335A1C62AcA6Ce1333",
tokenAddress: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
marketId: "0x1c21c59df9db44bf6f645d854ee710a8ca17b479451447e9f56758aee10a2fad",
rewardAmount: {
supply: parseUnits("1720", 6),
borrow: 0n,
collateral: 0n,
},
chainId: ChainId.BASE,
},
];