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

Adds spender address to eth syn sushi token #1550

Merged
merged 2 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const ETH_POOL_SWAP_TOKEN = new Token({
logo: synapseLogo,
poolName: 'Ethereum Stableswap Pool',
routerIndex: 'eth3pool',
poolId: 0, // 420
poolId: 420,
poolType: 'USD',
swapAddresses: {
[CHAINS.ETH.id]: '0x1116898DdA4015eD8dDefb84b6e8Bc24528Af2d8',
Expand Down
2 changes: 2 additions & 0 deletions packages/synapse-interface/constants/tokens/sushiMaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import sushiLogo from '@assets/icons/sushi.svg'
import * as CHAINS from '@constants/chains/master'

import { Token } from '@/utils/types'
import { MINICHEF_ADDRESSES } from '../minichef'

export const SYN_ETH_SUSHI_TOKEN = new Token({
addresses: {
Expand All @@ -17,6 +18,7 @@ export const SYN_ETH_SUSHI_TOKEN = new Token({
description: 'The SYN/ETH Sushiswap LP Token',
priorityRank: 6,
chainId: CHAINS.ETH.id,
miniChefAddress: MINICHEF_ADDRESSES[CHAINS.ETH.id],
})

export const ETH_USDC_SUSHI_TOKEN = new Token({
Expand Down
Loading