Skip to content

Commit

Permalink
Merge pull request #296 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add XOX bond
  • Loading branch information
efeDaniels authored Feb 23, 2024
2 parents be9f71d + 8979e7a commit 340ffdb
Show file tree
Hide file tree
Showing 3 changed files with 112 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 @@ -1821,6 +1821,88 @@
"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.",
"tags": ["Reserve"]
},
{
"index": 1027,
"contractAddress": {
"56": "0x8a5597815E71944837b1BaF346e92d05954cC8B7"
},
"billType": "reserve",
"billVersion": "V2",
"token": {
"symbol": "BNB",
"address": {
"56": "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
"97": "0xae13d989dac2f0debff460ac112a837c89baa7cd",
"137": "0xa649325aa7c5093d12d6f98eb4378deae68ce23f"
},
"decimals": {
"56": 18,
"97": 18,
"137": 18
},
"active": true
},
"quoteToken": {
"symbol": "BNB",
"address": {
"56": "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
"97": "0xae13d989dac2f0debff460ac112a837c89baa7cd",
"137": "0xa649325aa7c5093d12d6f98eb4378deae68ce23f"
},
"decimals": {
"56": 18,
"97": 18,
"137": 18
},
"active": true
},
"lpToken": {
"symbol": "BNB",
"address": {
"56": "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
"97": "0xae13d989dac2f0debff460ac112a837c89baa7cd",
"137": "0xa649325aa7c5093d12d6f98eb4378deae68ce23f"
},
"decimals": {
"56": 18,
"97": 18,
"137": 18
},
"active": true
},
"earnToken": {
"symbol": "XOX",
"address": {
"56": "0x0f5C78f152152dDA52a2ea45B0a8C10733010748"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"billNnftAddress": {
"56": "0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9"
},
"inactive": false,
"projectLink": "https://xoxlabs.io/",
"twitter": "https://twitter.com/Xox_Labs",
"audit": "https://skynet.certik.com/projects/xox-labs/",
"initTime": {
"56": 1700485200
},
"initPrice": {
"56": 0.002404165611
},
"soldOut": false,
"billArt": {
"collection": "ApeBond_Collection1"
},
"fullDescription": "XOX is The Next Gen Multichain DeFi Dapps & Web3 Solutions Provider. Their Hybrid Multichain Stable Coin, All-IN-One Dapp and Gamified Referral Program allow users to swap, stake, store, bridge, refer, invest and earn like never before. XOX Labs: a highly qualified and professional team built to deliver top class DeFi products.",
"tags": ["Defi Tooling"]
},
{
"index": 1025,
"contractAddress": {
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.54",
"version": "1.8.58",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
30 changes: 29 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: 1026
// BNB Largest ID: 1027
// Polygon Largest ID: 133
// Telos Largest ID: 215
// Arbitrum Largest ID: 2004
Expand Down Expand Up @@ -545,6 +545,34 @@ const bills: BillsConfig[] = [
'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.',
tags: ['Reserve'],
},
{
index: 1027,
contractAddress: {
[ChainId.BSC]: '0x8a5597815E71944837b1BaF346e92d05954cC8B7',
},
billType: 'reserve',
billVersion: BillVersion.V2,
token: tokens.wbnb,
quoteToken: tokens.wbnb,
lpToken: tokens.wbnb,
earnToken: tokens.xox,
billNnftAddress: {
[ChainId.BSC]: '0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9',
},
inactive: false,
projectLink: 'https://xoxlabs.io/',
twitter: 'https://twitter.com/Xox_Labs',
audit: 'https://skynet.certik.com/projects/xox-labs/',
initTime: { [ChainId.BSC]: 1700485200 },
initPrice: { [ChainId.BSC]: 0.002404165611 },
soldOut: false,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
fullDescription:
'XOX is The Next Gen Multichain DeFi Dapps & Web3 Solutions Provider. Their Hybrid Multichain Stable Coin, All-IN-One Dapp and Gamified Referral Program allow users to swap, stake, store, bridge, refer, invest and earn like never before. XOX Labs: a highly qualified and professional team built to deliver top class DeFi products.',
tags: ['Defi Tooling'],
},
{
index: 1025,
contractAddress: {
Expand Down

0 comments on commit 340ffdb

Please sign in to comment.