Skip to content

Commit

Permalink
chore: Set LGC jungle farm as inactive
Browse files Browse the repository at this point in the history
  • Loading branch information
ape-fede committed Nov 16, 2023
1 parent 6d2dc2a commit c13c51f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 96 deletions.
1 change: 1 addition & 0 deletions config/jungleFarms.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
69 changes: 1 addition & 68 deletions config/jungleFarmsV2.json
Original file line number Diff line number Diff line change
@@ -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
}
]
[]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
1 change: 1 addition & 0 deletions src/constants/jungleFarms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
27 changes: 0 additions & 27 deletions src/constants/jungleFarmsV2.ts
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c13c51f

Please sign in to comment.