From 4628ab7af3a6647e1e35a21e168a73034939ce9d Mon Sep 17 00:00:00 2001 From: Chef Penguin <169036504+thechefpenguin@users.noreply.github.com> Date: Fri, 5 Jul 2024 17:45:35 +0530 Subject: [PATCH] chore: list sqd-eth farm arbitrum (#10144) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR adds the Subsquid (SQD) token and SQD-ETH farm on Arbitrum. ### Detailed summary - Added Subsquid (SQD) token with details - Created SQD-ETH farm on Arbitrum with specific configuration > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- .changeset/lucky-peaches-sleep.md | 6 ++++++ packages/farms/constants/arb.ts | 7 +++++++ packages/tokens/src/constants/arb.ts | 8 ++++++++ 3 files changed, 21 insertions(+) create mode 100644 .changeset/lucky-peaches-sleep.md diff --git a/.changeset/lucky-peaches-sleep.md b/.changeset/lucky-peaches-sleep.md new file mode 100644 index 0000000000000..4d1c094a2fddd --- /dev/null +++ b/.changeset/lucky-peaches-sleep.md @@ -0,0 +1,6 @@ +--- +'@pancakeswap/tokens': patch +'@pancakeswap/farms': patch +--- + +Add Subsquid (SQD) token and SQD-ETH farm on Arbitrum diff --git a/packages/farms/constants/arb.ts b/packages/farms/constants/arb.ts index 7d34507841571..e13a990f9cacc 100644 --- a/packages/farms/constants/arb.ts +++ b/packages/farms/constants/arb.ts @@ -37,6 +37,13 @@ const v3TopFixedLps: FarmConfigV3[] = [ export const farmsV3 = defineFarmV3Configs([ ...v3TopFixedLps, + { + pid: 74, + lpAddress: '0xc24B560c7f8a1A50c2336cd8917Af61B5E14984F', + token0: arbitrumTokens.sqd, + token1: arbitrumTokens.weth, + feeAmount: FeeAmount.HIGH, + }, { pid: 73, lpAddress: '0x04a35D7920f2f2fF9fAA447fF8cFaD47fc7cED2b', diff --git a/packages/tokens/src/constants/arb.ts b/packages/tokens/src/constants/arb.ts index 8632d9692f80b..4edf54b77c9a4 100644 --- a/packages/tokens/src/constants/arb.ts +++ b/packages/tokens/src/constants/arb.ts @@ -359,4 +359,12 @@ export const arbitrumTokens = { 'Solv BTC', 'https://solv.finance/', ), + sqd: new ERC20Token( + ChainId.ARBITRUM_ONE, + '0x1337420dED5ADb9980CFc35f8f2B054ea86f8aB1', + 18, + 'SQD', + 'Subsquid', + 'https://subsquid.io/', + ), }