Skip to content

Commit

Permalink
Merge pull request #310 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add THX bond
  • Loading branch information
efeDaniels authored Mar 11, 2024
2 parents e73a688 + 22cd6c6 commit 471bf73
Show file tree
Hide file tree
Showing 3 changed files with 108 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 @@ -11969,6 +11969,83 @@
"inactive": true,
"soldOut": true
},
{
"index": 135,
"contractAddress": {
"137": "0x39D66fE579130B26Fed64187C0BA7fB03079424A"
},
"billType": "reserve",
"billVersion": "V2",
"token": {
"symbol": "MATIC",
"address": {
"56": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD",
"137": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270"
},
"decimals": {
"56": 18,
"137": 18
},
"active": true
},
"quoteToken": {
"symbol": "MATIC",
"address": {
"56": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD",
"137": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270"
},
"decimals": {
"56": 18,
"137": 18
},
"active": true
},
"lpToken": {
"symbol": "MATIC",
"address": {
"56": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD",
"137": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270"
},
"decimals": {
"56": 18,
"137": 18
},
"active": true
},
"earnToken": {
"symbol": "THX",
"address": {
"137": "0x2934b36ca9A4B31E633C5BE670C8C8b28b6aA015"
},
"decimals": {
"137": 18
},
"liquidityDex": {
"137": "Algebra"
},
"active": true
},
"billNnftAddress": {
"137": "0x0f59f11AA94e19b796e8a834A89a66F328155181"
},
"inactive": false,
"projectLink": "https://thx.network/",
"twitter": "https://twitter.com/thxprotocol",
"audit": "https://docs.thx.network/developers/audits",
"initTime": {
"137": 1700485200
},
"initPrice": {
"137": 0.002404165611
},
"soldOut": false,
"billArt": {
"collection": "Quickswap_Collection1"
},
"bondPartner": "QuickSwap",
"fullDescription": "THX is an all-in-one, on-brand quest platform that enables projects to drive growth and revenue through plug-and-play Reward Campaigns. By offering quests, rewards, and strategic partnerships, THX ensures a win-win scenario where both users and projects can enhance engagement and revenue, while guaranteeing an optimal user experience.",
"tags": ["Marketing Solutions"]
},
{
"index": 134,
"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.76",
"version": "1.8.77",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
31 changes: 30 additions & 1 deletion src/constants/bills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import tokens from './tokens'
import { BillArtCollection, BillsConfig, BillVersion, MigrationVestingTerms } from '../types'

// BNB Largest ID: 1037
// Polygon Largest ID: 133
// Polygon Largest ID: 135
// Telos Largest ID: 215
// Arbitrum Largest ID: 2004
//Migration Bonds ID: 5007
Expand Down Expand Up @@ -3467,6 +3467,35 @@ const bills: BillsConfig[] = [
/*
Polygon Bills
*/
{
index: 135,
contractAddress: {
[ChainId.MATIC]: '0x39D66fE579130B26Fed64187C0BA7fB03079424A',
},
billType: 'reserve',
billVersion: BillVersion.V2,
token: tokens.wmatic,
quoteToken: tokens.wmatic,
lpToken: tokens.wmatic,
earnToken: tokens.thx,
billNnftAddress: {
[ChainId.MATIC]: '0x0f59f11AA94e19b796e8a834A89a66F328155181',
},
inactive: false,
projectLink: 'https://thx.network/',
twitter: 'https://twitter.com/thxprotocol',
audit: 'https://docs.thx.network/developers/audits',
initTime: { [ChainId.MATIC]: 1700485200 },
initPrice: { [ChainId.MATIC]: 0.002404165611 },
soldOut: false,
billArt: {
collection: BillArtCollection.Quickswap_Collection1,
},
bondPartner: 'QuickSwap',
fullDescription:
'THX is an all-in-one, on-brand quest platform that enables projects to drive growth and revenue through plug-and-play Reward Campaigns. By offering quests, rewards, and strategic partnerships, THX ensures a win-win scenario where both users and projects can enhance engagement and revenue, while guaranteeing an optimal user experience.',
tags: ['Marketing Solutions'],
},
{
index: 134,
contractAddress: {
Expand Down

0 comments on commit 471bf73

Please sign in to comment.