Skip to content

Commit

Permalink
Merge pull request #206 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add DCK bond
  • Loading branch information
obiedobo authored Aug 31, 2023
2 parents 2563e9d + 66b58a8 commit 9d08821
Show file tree
Hide file tree
Showing 5 changed files with 158 additions and 2 deletions.
77 changes: 77 additions & 0 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,83 @@
},
"soldOut": false
},
{
"index": 85,
"contractAddress": {
"56": "0x39c7A61087e881033A009CCda9c8963588b3E09D"
},
"billType": "liquidity",
"billVersion": "V2",
"token": {
"symbol": "DCK",
"address": {
"56": "0x16faF9DAa401AA42506AF503Aa3d80B871c467A3"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"quoteToken": {
"symbol": "BUSD",
"address": {
"56": "0xe9e7cea3dedca5984780bafc599bd69add087d56",
"97": "0xeD24FC36d5Ee211Ea25A80239Fb8C4Cfd80f12Ee"
},
"decimals": {
"56": 18,
"97": 18
},
"active": true
},
"lpToken": {
"symbol": "DCK-BUSD",
"address": {
"56": "0x7B768b6d81db72872Ff9BDFc06E961c88712d10e"
},
"decimals": {
"56": 18
},
"active": true,
"lpToken": true,
"liquidityDex": {
"56": "PancakeSwapV2"
},
"getLpUrl": {
"56": "https://pancakeswap.finance/v2/add/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3"
}
},
"earnToken": {
"symbol": "DCK",
"address": {
"56": "0x16faF9DAa401AA42506AF503Aa3d80B871c467A3"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"billNnftAddress": {
"56": "0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9"
},
"inactive": false,
"projectLink": "https://dexcheck.io/",
"twitter": "https://twitter.com/DexCheck_io",
"audit": "https://skynet.certik.com/projects/dexcheck",
"initTime": {
"56": 0.0224148
},
"initPrice": {
"56": 1693497600
},
"soldOut": false
},
{
"index": 84,
"contractAddress": {
Expand Down
30 changes: 30 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -1976,6 +1976,19 @@
},
"active": true
},
"dck": {
"symbol": "DCK",
"address": {
"56": "0x16faF9DAa401AA42506AF503Aa3d80B871c467A3"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"cgg": {
"symbol": "CGG",
"address": {
Expand Down Expand Up @@ -2903,6 +2916,23 @@
"56": "https://pancakeswap.finance/v2/add/BNB/0x1bDaF9ddD7658d8049391971d1fd48c0484F66EC"
}
},
"dckBusd_PCS": {
"symbol": "DCK-BUSD",
"address": {
"56": "0x7B768b6d81db72872Ff9BDFc06E961c88712d10e"
},
"decimals": {
"56": 18
},
"active": true,
"lpToken": true,
"liquidityDex": {
"56": "PancakeSwapV2"
},
"getLpUrl": {
"56": "https://pancakeswap.finance/v2/add/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3"
}
},
"stlosTlos": {
"symbol": "STLOS-TLOS",
"address": {
Expand Down
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.4",
"version": "1.5.5",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
24 changes: 23 additions & 1 deletion src/constants/bills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ChainId } from '@ape.swap/sdk'
import tokens from './tokens'
import { BillsConfig, BillVersion } from '../types'

// BNB Largest ID: 84
// BNB Largest ID: 85
// Polygon Largest ID: 109
// Telos Largest ID: 215
// Arbitrum Largest ID: 2003
Expand Down Expand Up @@ -118,6 +118,28 @@ const bills: BillsConfig[] = [
initPrice: { [ChainId.BSC]: 0.0303088 },
soldOut: false,
},
{
index: 85,
contractAddress: {
[ChainId.BSC]: '0x39c7A61087e881033A009CCda9c8963588b3E09D',
},
billType: 'liquidity',
billVersion: BillVersion.V2,
token: tokens.dck,
quoteToken: tokens.busd,
lpToken: tokens.dckBusd_PCS,
earnToken: tokens.dck,
billNnftAddress: {
[ChainId.BSC]: '0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9',
},
inactive: false,
projectLink: 'https://dexcheck.io/',
twitter: 'https://twitter.com/DexCheck_io',
audit: 'https://skynet.certik.com/projects/dexcheck',
initTime: { [ChainId.BSC]: 0.0224148 },
initPrice: { [ChainId.BSC]: 1693497600 },
soldOut: false,
},
{
index: 84,
contractAddress: {
Expand Down
27 changes: 27 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1965,6 +1965,17 @@ const tokens: Record<string, Token> = {
},
active: true,
},
dck: {
symbol: 'DCK',
address: {
[ChainId.BSC]: '0x16faF9DAa401AA42506AF503Aa3d80B871c467A3',
},
decimals: { [ChainId.BSC]: 18 },
liquidityDex: {
[ChainId.BSC]: LiquidityDex.PancakeSwapV2,
},
active: true,
},
cgg: {
symbol: 'CGG',
address: {
Expand Down Expand Up @@ -2894,6 +2905,22 @@ const tokens: Record<string, Token> = {
[ChainId.BSC]: 'https://pancakeswap.finance/v2/add/BNB/0x1bDaF9ddD7658d8049391971d1fd48c0484F66EC',
},
},
dckBusd_PCS: {
symbol: 'DCK-BUSD',
address: {
[ChainId.BSC]: '0x7B768b6d81db72872Ff9BDFc06E961c88712d10e',
},
decimals: { [ChainId.BSC]: 18 },
active: true,
lpToken: true,
liquidityDex: {
[ChainId.BSC]: LiquidityDex.PancakeSwapV2,
},
getLpUrl: {
[ChainId.BSC]:
'https://pancakeswap.finance/v2/add/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3',
},
},
stlosTlos: {
symbol: 'STLOS-TLOS',
address: {
Expand Down

0 comments on commit 9d08821

Please sign in to comment.