diff --git a/config/jungleFarms.json b/config/jungleFarms.json index 4d2e366f..e959d78d 100644 --- a/config/jungleFarms.json +++ b/config/jungleFarms.json @@ -1877,6 +1877,7 @@ "contractAddress": { "56": "0xd98dc646823054E9c5e194b2aAc2C277cFba17FA" }, + "bonusEndBlock": 33551151, "projectLink": "http://livegreencoin.com/", "twitter": "https://twitter.com/LiveGreenCoin1", "audit": "https://www.certik.com/projects/livegreencoin", diff --git a/config/jungleFarmsV2.json b/config/jungleFarmsV2.json index c463b4e1..fe51488c 100644 --- a/config/jungleFarmsV2.json +++ b/config/jungleFarmsV2.json @@ -1,68 +1 @@ -[ - { - "jungleId": 1, - "tokenName": "LGC-BNB", - "image": "LGC.svg", - "stakingToken": { - "symbol": "LGC-BNB", - "address": { - "56": "0x1809b34F406252645E704f7a76acB94728FD4fb6" - }, - "decimals": { - "56": 18 - }, - "active": true, - "lpToken": true - }, - "rewardToken": { - "symbol": "LGC", - "address": { - "56": "0x3496212eC43Cc49F5151ec4405efD4975e036f89" - }, - "decimals": { - "56": 18 - }, - "active": true - }, - "lpTokens": { - "token": { - "symbol": "LGC", - "address": { - "56": "0x3496212eC43Cc49F5151ec4405efD4975e036f89" - }, - "decimals": { - "56": 18 - }, - "active": true - }, - "quoteToken": { - "symbol": "BNB", - "address": { - "56": "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c", - "97": "0xae13d989dac2f0debff460ac112a837c89baa7cd", - "137": "0xa649325aa7c5093d12d6f98eb4378deae68ce23f" - }, - "decimals": { - "56": 18, - "97": 18, - "137": 18 - }, - "active": true - } - }, - "contractAddress": { - "56": "0xd98dc646823054E9c5e194b2aAc2C277cFba17FA" - }, - "projectLink": "http://livegreencoin.com/", - "twitter": "https://twitter.com/LiveGreenCoin1", - "audit": "https://www.certik.com/projects/livegreencoin", - "harvest": true, - "tokenPerBlock": "0.464236111111111111", - "sortOrder": 1, - "isFinished": false, - "tokenDecimals": 18, - "lpStaking": true, - "isEarnTokenLp": false, - "network": 56 - } -] +[] diff --git a/package.json b/package.json index c7376304..668352bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ape.swap/apeswap-lists", - "version": "1.5.47", + "version": "1.5.48", "main": "dist/index.js", "typings": "dist/index.d.ts", "publishConfig": { diff --git a/src/constants/jungleFarms.ts b/src/constants/jungleFarms.ts index 0b27bb4d..0d0d92ba 100644 --- a/src/constants/jungleFarms.ts +++ b/src/constants/jungleFarms.ts @@ -693,6 +693,7 @@ const jungleFarms: JungleFarmConfig[] = [ contractAddress: { [ChainId.BSC]: '0xd98dc646823054E9c5e194b2aAc2C277cFba17FA', }, + bonusEndBlock: 33551151, projectLink: 'http://livegreencoin.com/', twitter: 'https://twitter.com/LiveGreenCoin1', audit: 'https://www.certik.com/projects/livegreencoin', diff --git a/src/constants/jungleFarmsV2.ts b/src/constants/jungleFarmsV2.ts index 8c8da8ed..1f8ed47e 100644 --- a/src/constants/jungleFarmsV2.ts +++ b/src/constants/jungleFarmsV2.ts @@ -1,34 +1,7 @@ import { JungleFarmConfig } from 'types' -import tokens from './tokens' -import { ChainId } from '@ape.swap/sdk' const jungleFarmsV2: JungleFarmConfig[] = [ //Current Jungle ID = 1 - { - jungleId: 1, //I'm using id 1 though this is actually ID 18 from the legacyList - tokenName: tokens.lgcBnb.symbol, - image: 'LGC.svg', - stakingToken: tokens.lgcBnb, - rewardToken: tokens.lgc, - lpTokens: { - token: tokens.lgc, - quoteToken: tokens.wbnb, - }, - contractAddress: { - [ChainId.BSC]: '0xd98dc646823054E9c5e194b2aAc2C277cFba17FA', - }, - projectLink: 'http://livegreencoin.com/', - twitter: 'https://twitter.com/LiveGreenCoin1', - audit: 'https://www.certik.com/projects/livegreencoin', - harvest: true, - tokenPerBlock: '0.464236111111111111', - sortOrder: 1, - isFinished: false, - tokenDecimals: 18, - lpStaking: true, - isEarnTokenLp: false, - network: ChainId.BSC, - }, ] export default jungleFarmsV2