Skip to content

Commit

Permalink
Merge pull request #228 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add ARCAS Bond
  • Loading branch information
efeDaniels authored Oct 27, 2023
2 parents 0c3669d + 0342074 commit 5319fe0
Show file tree
Hide file tree
Showing 5 changed files with 165 additions and 2 deletions.
82 changes: 82 additions & 0 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -1084,6 +1084,88 @@
},
"soldOut": false
},
{
"index": 95,
"contractAddress": {
"56": "0x89150e8E396Acc38AbFCAC853d6EB977AcCe13e1"
},
"billType": "liquidity",
"billVersion": "V2",
"token": {
"symbol": "ARCAS",
"address": {
"56": "0xAd0926eCf31719263DC86426024794332d9dD9A3"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"quoteToken": {
"symbol": "BNB",
"address": {
"56": "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
"97": "0xae13d989dac2f0debff460ac112a837c89baa7cd",
"137": "0xa649325aa7c5093d12d6f98eb4378deae68ce23f"
},
"decimals": {
"56": 18,
"97": 18,
"137": 18
},
"active": true
},
"lpToken": {
"symbol": "ARCAS-BNB",
"address": {
"56": "0xAcBeA95dDaB356b40DAe8046b185F13E06730b34"
},
"decimals": {
"56": 18
},
"active": true,
"lpToken": true,
"liquidityDex": {
"56": "PancakeSwapV2"
},
"getLpUrl": {
"56": "https://pancakeswap.finance/v2/add/0xAd0926eCf31719263DC86426024794332d9dD9A3/BNB"
}
},
"earnToken": {
"symbol": "ARCAS",
"address": {
"56": "0xAd0926eCf31719263DC86426024794332d9dD9A3"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"billNnftAddress": {
"56": "0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9"
},
"inactive": false,
"projectLink": "https://www.blockapescissors.com/#home",
"twitter": "https://twitter.com/apeblock?lang=en",
"audit": "https://solidity.finance/audits/BlockApeScissors/",
"initTime": {
"56": 1698411600
},
"initPrice": {
"56": 0.0242848491820561
},
"soldOut": false,
"billArt": {
"collection": "ApeBond_Collection1"
}
},
{
"index": 94,
"contractAddress": {
Expand Down
30 changes: 30 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -1981,6 +1981,19 @@
},
"active": true
},
"arcas": {
"symbol": "ARCAS",
"address": {
"56": "0xAd0926eCf31719263DC86426024794332d9dD9A3"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"brg": {
"symbol": "BRG",
"address": {
Expand Down Expand Up @@ -3127,6 +3140,23 @@
"56": "https://pancakeswap.finance/v2/add/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/0x0012365F0a1E5F30a5046c680DCB21D07b15FcF7"
}
},
"arcasBnb_PCS": {
"symbol": "ARCAS-BNB",
"address": {
"56": "0xAcBeA95dDaB356b40DAe8046b185F13E06730b34"
},
"decimals": {
"56": 18
},
"active": true,
"lpToken": true,
"liquidityDex": {
"56": "PancakeSwapV2"
},
"getLpUrl": {
"56": "https://pancakeswap.finance/v2/add/0xAd0926eCf31719263DC86426024794332d9dD9A3/BNB"
}
},
"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.35",
"version": "1.5.36",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
27 changes: 26 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 { BillArtCollection, BillsConfig, BillVersion, MigrationVestingTerms } from '../types'

// BNB Largest ID: 94
// BNB Largest ID: 95
// Polygon Largest ID: 109
// Telos Largest ID: 215
// Arbitrum Largest ID: 2003
Expand Down Expand Up @@ -335,6 +335,31 @@ const bills: BillsConfig[] = [
initPrice: { [ChainId.BSC]: 0.0303088 },
soldOut: false,
},
{
index: 95,
contractAddress: {
[ChainId.BSC]: '0x89150e8E396Acc38AbFCAC853d6EB977AcCe13e1',
},
billType: 'liquidity',
billVersion: BillVersion.V2,
token: tokens.arcas,
quoteToken: tokens.wbnb,
lpToken: tokens.arcasBnb_PCS,
earnToken: tokens.arcas,
billNnftAddress: {
[ChainId.BSC]: '0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9',
},
inactive: false,
projectLink: 'https://www.blockapescissors.com/#home',
twitter: 'https://twitter.com/apeblock?lang=en',
audit: 'https://solidity.finance/audits/BlockApeScissors/',
initTime: { [ChainId.BSC]: 1698411600 },
initPrice: { [ChainId.BSC]: 0.0242848491820561 },
soldOut: false,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
},
{
index: 94,
contractAddress: {
Expand Down
26 changes: 26 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1972,6 +1972,17 @@ const tokens: Record<string, Token> = {
},
active: true,
},
arcas: {
symbol: 'ARCAS',
address: {
[ChainId.BSC]: '0xAd0926eCf31719263DC86426024794332d9dD9A3',
},
decimals: { [ChainId.BSC]: 18 },
liquidityDex: {
[ChainId.BSC]: LiquidityDex.PancakeSwapV2,
},
active: true,
},
brg: {
symbol: 'BRG',
address: {
Expand Down Expand Up @@ -3093,6 +3104,21 @@ const tokens: Record<string, Token> = {
'https://pancakeswap.finance/v2/add/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/0x0012365F0a1E5F30a5046c680DCB21D07b15FcF7',
},
},
arcasBnb_PCS: {
symbol: 'ARCAS-BNB',
address: {
[ChainId.BSC]: '0xAcBeA95dDaB356b40DAe8046b185F13E06730b34',
},
decimals: { [ChainId.BSC]: 18 },
active: true,
lpToken: true,
liquidityDex: {
[ChainId.BSC]: LiquidityDex.PancakeSwapV2,
},
getLpUrl: {
[ChainId.BSC]: 'https://pancakeswap.finance/v2/add/0xAd0926eCf31719263DC86426024794332d9dD9A3/BNB',
},
},
stlosTlos: {
symbol: 'STLOS-TLOS',
address: {
Expand Down

0 comments on commit 5319fe0

Please sign in to comment.