From 0dc834d64613b8882ccb767e2f7509baee6e331a Mon Sep 17 00:00:00 2001 From: Efe Date: Wed, 14 Feb 2024 16:32:18 +0300 Subject: [PATCH 1/3] chore: Add DCB-BNB LP --- config/tokens.json | 20 ++++++++++++++++++++ src/constants/tokens.ts | 18 ++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/config/tokens.json b/config/tokens.json index 158b4c9c..8e240a5c 100644 --- a/config/tokens.json +++ b/config/tokens.json @@ -577,6 +577,9 @@ "decimals": { "56": 18 }, + "liquidityDex": { + "56": "PancakeSwapV2" + }, "active": true }, "nfty": { @@ -3411,6 +3414,23 @@ "56": "https://pancakeswap.finance/v2/add/BNB/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f" } }, + "dcbBnb_PCS": { + "symbol": "DCB-BNB", + "address": { + "56": "0x83D5475BC3bFA08aC3D82ba54b4F86AFc5444398" + }, + "decimals": { + "56": 18 + }, + "active": true, + "lpToken": true, + "liquidityDex": { + "56": "PancakeSwapV2" + }, + "getLpUrl": { + "56": "https://pancakeswap.finance/v2/add/BNB/0xEAc9873291dDAcA754EA5642114151f3035c67A2" + } + }, "brgBnb_PCS": { "symbol": "BRG-BNB", "address": { diff --git a/src/constants/tokens.ts b/src/constants/tokens.ts index e36c4246..8cfa95ae 100644 --- a/src/constants/tokens.ts +++ b/src/constants/tokens.ts @@ -582,6 +582,9 @@ const tokens: Record = { decimals: { [ChainId.BSC]: 18, }, + liquidityDex: { + [ChainId.BSC]: LiquidityDex.PancakeSwapV2, + }, active: true, }, nfty: { @@ -3371,6 +3374,21 @@ const tokens: Record = { [ChainId.BSC]: 'https://pancakeswap.finance/v2/add/BNB/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f', }, }, + dcbBnb_PCS: { + symbol: 'DCB-BNB', + address: { + [ChainId.BSC]: '0x83D5475BC3bFA08aC3D82ba54b4F86AFc5444398', + }, + decimals: { [ChainId.BSC]: 18 }, + active: true, + lpToken: true, + liquidityDex: { + [ChainId.BSC]: LiquidityDex.PancakeSwapV2, + }, + getLpUrl: { + [ChainId.BSC]: 'https://pancakeswap.finance/v2/add/BNB/0xEAc9873291dDAcA754EA5642114151f3035c67A2', + }, + }, brgBnb_PCS: { symbol: 'BRG-BNB', address: { From 6db803180a33eb92e587054016ae0c8f2dc2de5f Mon Sep 17 00:00:00 2001 From: Efe Date: Thu, 15 Feb 2024 22:41:41 +0300 Subject: [PATCH 2/3] chore: Change dcb LP token naming --- config/tokens.json | 6 +++--- src/constants/tokens.ts | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/config/tokens.json b/config/tokens.json index 8e240a5c..2647ff62 100644 --- a/config/tokens.json +++ b/config/tokens.json @@ -3414,8 +3414,8 @@ "56": "https://pancakeswap.finance/v2/add/BNB/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f" } }, - "dcbBnb_PCS": { - "symbol": "DCB-BNB", + "dcbUsdt_PCS": { + "symbol": "DCB-USDT", "address": { "56": "0x83D5475BC3bFA08aC3D82ba54b4F86AFc5444398" }, @@ -3428,7 +3428,7 @@ "56": "PancakeSwapV2" }, "getLpUrl": { - "56": "https://pancakeswap.finance/v2/add/BNB/0xEAc9873291dDAcA754EA5642114151f3035c67A2" + "56": "https://pancakeswap.finance/v2/add/0x55d398326f99059fF775485246999027B3197955/0xEAc9873291dDAcA754EA5642114151f3035c67A2" } }, "brgBnb_PCS": { diff --git a/src/constants/tokens.ts b/src/constants/tokens.ts index 8cfa95ae..a0273745 100644 --- a/src/constants/tokens.ts +++ b/src/constants/tokens.ts @@ -3374,8 +3374,8 @@ const tokens: Record = { [ChainId.BSC]: 'https://pancakeswap.finance/v2/add/BNB/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f', }, }, - dcbBnb_PCS: { - symbol: 'DCB-BNB', + dcbUsdt_PCS: { + symbol: 'DCB-USDT', address: { [ChainId.BSC]: '0x83D5475BC3bFA08aC3D82ba54b4F86AFc5444398', }, @@ -3386,7 +3386,8 @@ const tokens: Record = { [ChainId.BSC]: LiquidityDex.PancakeSwapV2, }, getLpUrl: { - [ChainId.BSC]: 'https://pancakeswap.finance/v2/add/BNB/0xEAc9873291dDAcA754EA5642114151f3035c67A2', + [ChainId.BSC]: + 'https://pancakeswap.finance/v2/add/0x55d398326f99059fF775485246999027B3197955/0xEAc9873291dDAcA754EA5642114151f3035c67A2', }, }, brgBnb_PCS: { From d4e601ffb439f3616998d830b930629f5610e89a Mon Sep 17 00:00:00 2001 From: Efe Date: Fri, 16 Feb 2024 15:56:46 +0300 Subject: [PATCH 3/3] chore: Add DCB bond --- config/bills.json | 86 ++++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- src/constants/bills.ts | 31 ++++++++++++++- 3 files changed, 117 insertions(+), 2 deletions(-) diff --git a/config/bills.json b/config/bills.json index 8ed7a847..edfe1c59 100644 --- a/config/bills.json +++ b/config/bills.json @@ -1727,6 +1727,92 @@ "tags": ["Cex Fund"], "fullDescription": "ApeBond is a multi-chain bonding protocol dedicated to creating a sustainable DeFi future for projects and communities. Leveraging their innovative Bonding technology and collaborating with over 70 partners, they strive to become the leading protocol for bond solutions and sustainable liquidity." }, + { + "index": 1025, + "contractAddress": { + "56": "0x8772Ba15F8169BaE002E3cA0D48629aB408D838F" + }, + "billType": "liquidity", + "billVersion": "V2", + "token": { + "symbol": "USDT", + "address": { + "40": "0xefaeee334f0fd1712f9a8cc375f427d9cdd40d73", + "56": "0x55d398326f99059ff775485246999027b3197955", + "137": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "42161": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9" + }, + "decimals": { + "40": 6, + "56": 18, + "137": 6, + "42161": 6 + }, + "active": true + }, + "quoteToken": { + "symbol": "DCB", + "address": { + "56": "0xEAc9873291dDAcA754EA5642114151f3035c67A2" + }, + "decimals": { + "56": 18 + }, + "liquidityDex": { + "56": "PancakeSwapV2" + }, + "active": true + }, + "lpToken": { + "symbol": "DCB-USDT", + "address": { + "56": "0x83D5475BC3bFA08aC3D82ba54b4F86AFc5444398" + }, + "decimals": { + "56": 18 + }, + "active": true, + "lpToken": true, + "liquidityDex": { + "56": "PancakeSwapV2" + }, + "getLpUrl": { + "56": "https://pancakeswap.finance/v2/add/0x55d398326f99059fF775485246999027B3197955/0xEAc9873291dDAcA754EA5642114151f3035c67A2" + } + }, + "earnToken": { + "symbol": "DCB", + "address": { + "56": "0xEAc9873291dDAcA754EA5642114151f3035c67A2" + }, + "decimals": { + "56": 18 + }, + "liquidityDex": { + "56": "PancakeSwapV2" + }, + "active": true + }, + "billNnftAddress": { + "56": "0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9" + }, + "inactive": false, + "projectLink": "https://www.decubate.com/", + "twitter": "https://twitter.com/decubate", + "audit": "https://github.com/Decubate-com/documents/blob/main/%5BHAECHI%20AUDIT%5D%20Decubate%20Smart%20Contract%20Audit%20Report%20v2.0.pdf", + "initTime": { + "56": 1700485200 + }, + "initPrice": { + "56": 0.002404165611 + }, + "soldOut": false, + "billArt": { + "collection": "ApeBond_Collection1" + }, + "fullDescription": "At Decubate the team is pioneering a Sustainable Future for Web3 Entrepreneurs and Investors. Users can expect advanced products and services, such as their innovative plug-and-play Token Management System (TMS) and other essential Web3 white label tools and services. Furthermore, the project provides a Launchpad, Web3 Custom Development and more! Decubate: Unleashing the Power of Web3.", + "tags": ["Defi Tooling"] + }, { "index": 1024, "contractAddress": { diff --git a/package.json b/package.json index df7550c2..ce5429cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ape.swap/apeswap-lists", - "version": "1.8.49", + "version": "1.8.50", "main": "dist/index.js", "typings": "dist/index.d.ts", "publishConfig": { diff --git a/src/constants/bills.ts b/src/constants/bills.ts index a28af06f..e6d7a003 100644 --- a/src/constants/bills.ts +++ b/src/constants/bills.ts @@ -2,7 +2,7 @@ import { ChainId } from '@ape.swap/sdk' import tokens from './tokens' import { BillArtCollection, BillsConfig, BillVersion, MigrationVestingTerms } from '../types' -// BNB Largest ID: 1023 +// BNB Largest ID: 1025 // Polygon Largest ID: 130 // Telos Largest ID: 215 // Arbitrum Largest ID: 2004 @@ -517,6 +517,35 @@ const bills: BillsConfig[] = [ fullDescription: 'ApeBond is a multi-chain bonding protocol dedicated to creating a sustainable DeFi future for projects and communities. Leveraging their innovative Bonding technology and collaborating with over 70 partners, they strive to become the leading protocol for bond solutions and sustainable liquidity.', }, + { + index: 1025, + contractAddress: { + [ChainId.BSC]: '0x8772Ba15F8169BaE002E3cA0D48629aB408D838F', + }, + billType: 'liquidity', + billVersion: BillVersion.V2, + token: tokens.usdt, + quoteToken: tokens.dcb, + lpToken: tokens.dcbUsdt_PCS, + earnToken: tokens.dcb, + billNnftAddress: { + [ChainId.BSC]: '0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9', + }, + inactive: false, + projectLink: 'https://www.decubate.com/', + twitter: 'https://twitter.com/decubate', + audit: + 'https://github.com/Decubate-com/documents/blob/main/%5BHAECHI%20AUDIT%5D%20Decubate%20Smart%20Contract%20Audit%20Report%20v2.0.pdf', + initTime: { [ChainId.BSC]: 1700485200 }, + initPrice: { [ChainId.BSC]: 0.002404165611 }, + soldOut: false, + billArt: { + collection: BillArtCollection.ApeBond_Collection1, + }, + fullDescription: + 'At Decubate the team is pioneering a Sustainable Future for Web3 Entrepreneurs and Investors. Users can expect advanced products and services, such as their innovative plug-and-play Token Management System (TMS) and other essential Web3 white label tools and services. Furthermore, the project provides a Launchpad, Web3 Custom Development and more! Decubate: Unleashing the Power of Web3.', + tags: ['Defi Tooling'], + }, { index: 1024, contractAddress: {