diff --git a/assets/promo/farmingtoken.png b/assets/promo/farmingtoken.png new file mode 100644 index 000000000..ccd313a37 Binary files /dev/null and b/assets/promo/farmingtoken.png differ diff --git a/config.js b/config.js index 131e6a736..6127c7f83 100755 --- a/config.js +++ b/config.js @@ -332,8 +332,8 @@ const networks = { withdraw: {}, RECOMMENDED_MARKETS: ['DWD@diggerstoken', 'BRWL@brawlertoken'], - PINNED_MARKETS: [424], - BANNER_MARKETS: [424], + PINNED_MARKETS: [156], + BANNER_MARKETS: [156], SCAM_CONTRACTS: [ 'usdcoinchain', diff --git a/store/index.js b/store/index.js index 5988ca77a..b21e2f964 100755 --- a/store/index.js +++ b/store/index.js @@ -492,12 +492,12 @@ export const getters = { }, promoted(state, getters) { - // TODO mock poolId now + // TODO mock poolId now neet to implement in configs return getters.markets .filter(market => state.network.BANNER_MARKETS.includes(market.id)) .map(market => ({ ...market, - poolId: market.id === 424 ? 1627 : market.id === 495 ? 1831 : undefined + poolId: market.id === 156 ? 765 : market.id === 495 ? 1831 : undefined })).reverse() },