Skip to content

Commit

Permalink
Merge pull request #286 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Reserve Bond Sold Out
  • Loading branch information
efeDaniels authored Feb 5, 2024
2 parents 09c952c + 65032d9 commit 7a8a5e3
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -1720,7 +1720,7 @@
"initPrice": {
"56": 0.0776096447226248
},
"soldOut": false,
"soldOut": true,
"billArt": {
"collection": "CexFundBond_Collection1"
},
Expand Down
13 changes: 13 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -2280,6 +2280,19 @@
},
"active": true
},
"cdx": {
"symbol": "CDX",
"address": {
"56": "0x1c3ba6cF2676cc795db02a3b2093E5076f5F330E"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV3"
},
"active": true
},
"hgpt": {
"symbol": "HGPT",
"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.8.40",
"version": "1.8.41",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants/bills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ const bills: BillsConfig[] = [
audit: 'https://paladinsec.co/projects/apeswap/',
initTime: { [ChainId.BSC]: 1702998000 },
initPrice: { [ChainId.BSC]: 0.0776096447226248 },
soldOut: false,
soldOut: true,
billArt: {
collection: BillArtCollection.CexFundBond_Collection1,
},
Expand Down
11 changes: 11 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2270,6 +2270,17 @@ const tokens: Record<string, Token> = {
},
active: true,
},
cdx: {
symbol: 'CDX',
address: {
[ChainId.BSC]: '0x1c3ba6cF2676cc795db02a3b2093E5076f5F330E',
},
decimals: { [ChainId.BSC]: 18 },
liquidityDex: {
[ChainId.BSC]: LiquidityDex.PancakeSwapV3,
},
active: true,
},
hgpt: {
symbol: 'HGPT',
address: {
Expand Down

0 comments on commit 7a8a5e3

Please sign in to comment.