From 17d5d0dd99bbcef57e46c017ced5d6adfc0851e0 Mon Sep 17 00:00:00 2001 From: n0mbr3al3at0r10 Date: Wed, 6 Mar 2024 19:19:40 -0300 Subject: [PATCH] chore: removed mock bond --- config/bills.json | 77 ------------------------------------------ src/constants/bills.ts | 28 --------------- 2 files changed, 105 deletions(-) diff --git a/config/bills.json b/config/bills.json index bb9f01f1..b02f95ea 100644 --- a/config/bills.json +++ b/config/bills.json @@ -15291,82 +15291,5 @@ "42161": 1.5528 }, "soldOut": true - }, - { - "index": 123456, - "contractAddress": { - "2525": "0xac28AC60180D903B6a8139fC8eDFdb40F459433e" - }, - "billType": "reserve", - "billVersion": "V3", - "token": { - "symbol": "mockUSDT", - "address": { - "2525": "0xA4259F9A8EB2E88ccc9C78bE1BeB27faF54bcc7D" - }, - "decimals": { - "2525": 18 - }, - "liquidityDex": { - "2525": "External" - }, - "active": true - }, - "quoteToken": { - "symbol": "mockUSDT", - "address": { - "2525": "0xA4259F9A8EB2E88ccc9C78bE1BeB27faF54bcc7D" - }, - "decimals": { - "2525": 18 - }, - "liquidityDex": { - "2525": "External" - }, - "active": true - }, - "lpToken": { - "symbol": "mockUSDT", - "address": { - "2525": "0xA4259F9A8EB2E88ccc9C78bE1BeB27faF54bcc7D" - }, - "decimals": { - "2525": 18 - }, - "liquidityDex": { - "2525": "External" - }, - "active": true - }, - "earnToken": { - "symbol": "mockINJ", - "address": { - "2525": "0x4569348D39cc38F4d6a1180573Df73B7b03251d9" - }, - "decimals": { - "2525": 18 - }, - "liquidityDex": { - "2525": "External" - }, - "active": true - }, - "billNnftAddress": { - "2525": "0xa68ae920d7c2945766c282B786b83Fb56cEEdfD0" - }, - "inactive": false, - "projectLink": "https://ape.bond/", - "twitter": "https://twitter.com/apebond", - "audit": "https://paladinsec.co/projects/apeswap/", - "initTime": { - "2525": 1702472400 - }, - "initPrice": { - "2525": 1 - }, - "soldOut": false, - "billArt": { - "collection": "ApeBond_Collection1" - } } ] diff --git a/src/constants/bills.ts b/src/constants/bills.ts index 3eb63ecf..a3fc19f6 100644 --- a/src/constants/bills.ts +++ b/src/constants/bills.ts @@ -4678,34 +4678,6 @@ const bills: BillsConfig[] = [ initPrice: { [ChainId.ARBITRUM]: 1.5528 }, soldOut: true, }, - - // TEST - // TODO. Remove this mock bond once in prod. - { - index: 123456, // mock - contractAddress: { - [ChainId.INEVM]: '0xac28AC60180D903B6a8139fC8eDFdb40F459433e', - }, - billType: 'reserve', - billVersion: BillVersion.V3, - token: tokens.mockUSDT, - quoteToken: tokens.mockUSDT, - lpToken: tokens.mockUSDT, - earnToken: tokens.mockINJ, - billNnftAddress: { - [ChainId.INEVM]: '0xa68ae920d7c2945766c282B786b83Fb56cEEdfD0', // test nft - }, - inactive: false, - projectLink: 'https://ape.bond/', - twitter: 'https://twitter.com/apebond', - audit: 'https://paladinsec.co/projects/apeswap/', - initTime: { [ChainId.INEVM]: 1702472400 }, - initPrice: { [ChainId.INEVM]: 1 }, - soldOut: false, - billArt: { - collection: BillArtCollection.ApeBond_Collection1, - }, - }, ] export default bills