Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feat/update_staking' into feat/u…
Browse files Browse the repository at this point in the history
…pdate_staking
  • Loading branch information
jmoreira-valory committed Sep 3, 2024
2 parents 32872ad + ef1bbe0 commit 4f90bd5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/components/ManageStakingPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export const ManageStakingPage = () => {
}
>
<WhatAreStakingContractsSection />
<StakingContractSection stakingProgram={StakingProgram.Beta2} />
<StakingContractSection stakingProgram={StakingProgram.Beta} />
<StakingContractSection stakingProgram={StakingProgram.Alpha} />
</Card>
Expand Down
2 changes: 1 addition & 1 deletion frontend/constants/contractAddresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const SERVICE_STAKING_TOKEN_MECH_USAGE_CONTRACT_ADDRESSES: Record<
Record<StakingProgram, Address>
> = {
[Chain.GNOSIS]: {
// Maintain order, as it is used in the UI
[StakingProgram.Beta2]: '0x1c2F82413666d2a3fD8bC337b0268e62dDF67434',
[StakingProgram.Beta]: '0xeF44Fb0842DDeF59D37f85D61A1eF492bbA6135d',
[StakingProgram.Alpha]: '0xEE9F19b5DF06c7E8Bfc7B28745dcf944C504198A',
},
Expand Down
3 changes: 3 additions & 0 deletions frontend/constants/stakingProgramMeta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ export const STAKING_PROGRAM_META: Record<
[StakingProgram.Beta]: {
name: 'Pearl Beta',
},
[StakingProgram.Beta2]: {
name: 'Pearl Beta 2',
},
};

0 comments on commit 4f90bd5

Please sign in to comment.