From b644ce9e5dd86cbba0f50761c0baf5653df56b3d Mon Sep 17 00:00:00 2001 From: Efe Date: Fri, 23 Feb 2024 14:21:43 +0300 Subject: [PATCH 1/3] chore: Add XOX bond --- config/bills.json | 82 ++++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- src/constants/bills.ts | 29 ++++++++++++++- 3 files changed, 111 insertions(+), 2 deletions(-) diff --git a/config/bills.json b/config/bills.json index 4f1c2c8e..781b5b15 100644 --- a/config/bills.json +++ b/config/bills.json @@ -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": "0x727966Af79D785615D86bB22076D557f29f49B66" + }, + "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": "Good project ser!", + "tags": ["Defi Tooling"] + }, { "index": 1025, "contractAddress": { diff --git a/package.json b/package.json index 2e4aa93a..ca519df2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ape.swap/apeswap-lists", - "version": "1.8.54", + "version": "1.8.55", "main": "dist/index.js", "typings": "dist/index.d.ts", "publishConfig": { diff --git a/src/constants/bills.ts b/src/constants/bills.ts index 0aa889ad..7dd938cd 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: 1026 +// BNB Largest ID: 1027 // Polygon Largest ID: 133 // Telos Largest ID: 215 // Arbitrum Largest ID: 2004 @@ -545,6 +545,33 @@ 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]: '0x727966Af79D785615D86bB22076D557f29f49B66', + }, + 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: 'Good project ser!', + tags: ['Defi Tooling'], + }, { index: 1025, contractAddress: { From 46fc26f55bf12d0cbec994166bf1d2f973e36c9e Mon Sep 17 00:00:00 2001 From: Efe Date: Fri, 23 Feb 2024 18:38:55 +0300 Subject: [PATCH 2/3] chore: Update the bond description --- config/bills.json | 2 +- package.json | 2 +- src/constants/bills.ts | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/bills.json b/config/bills.json index 781b5b15..d2d0b634 100644 --- a/config/bills.json +++ b/config/bills.json @@ -1900,7 +1900,7 @@ "billArt": { "collection": "ApeBond_Collection1" }, - "fullDescription": "Good project ser!", + "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"] }, { diff --git a/package.json b/package.json index ca519df2..08067e3a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ape.swap/apeswap-lists", - "version": "1.8.55", + "version": "1.8.56", "main": "dist/index.js", "typings": "dist/index.d.ts", "publishConfig": { diff --git a/src/constants/bills.ts b/src/constants/bills.ts index 7dd938cd..ec9198ab 100644 --- a/src/constants/bills.ts +++ b/src/constants/bills.ts @@ -569,7 +569,8 @@ const bills: BillsConfig[] = [ billArt: { collection: BillArtCollection.ApeBond_Collection1, }, - fullDescription: 'Good project ser!', + 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'], }, { From 8979e7aceea917e3e73cb29952712ff893a85d4e Mon Sep 17 00:00:00 2001 From: Efe Date: Fri, 23 Feb 2024 19:53:31 +0300 Subject: [PATCH 3/3] chore: Update bill contract --- config/bills.json | 2 +- package.json | 2 +- src/constants/bills.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/bills.json b/config/bills.json index d2d0b634..3124cf83 100644 --- a/config/bills.json +++ b/config/bills.json @@ -1824,7 +1824,7 @@ { "index": 1027, "contractAddress": { - "56": "0x727966Af79D785615D86bB22076D557f29f49B66" + "56": "0x8a5597815E71944837b1BaF346e92d05954cC8B7" }, "billType": "reserve", "billVersion": "V2", diff --git a/package.json b/package.json index 08067e3a..80b8437a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ape.swap/apeswap-lists", - "version": "1.8.56", + "version": "1.8.58", "main": "dist/index.js", "typings": "dist/index.d.ts", "publishConfig": { diff --git a/src/constants/bills.ts b/src/constants/bills.ts index ec9198ab..c728f8bb 100644 --- a/src/constants/bills.ts +++ b/src/constants/bills.ts @@ -548,7 +548,7 @@ const bills: BillsConfig[] = [ { index: 1027, contractAddress: { - [ChainId.BSC]: '0x727966Af79D785615D86bB22076D557f29f49B66', + [ChainId.BSC]: '0x8a5597815E71944837b1BaF346e92d05954cC8B7', }, billType: 'reserve', billVersion: BillVersion.V2,