Skip to content

Commit

Permalink
Merge pull request #249 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add TRC bond
  • Loading branch information
efeDaniels authored Dec 8, 2023
2 parents df1a00e + 9696274 commit a0b53f4
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 4 deletions.
86 changes: 86 additions & 0 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -8797,6 +8797,92 @@
"inactive": true,
"soldOut": true
},
{
"index": 122,
"contractAddress": {
"137": "0x1f3b1E69c874D29e6928ebddA91C22454074d8Fa"
},
"billType": "reserve",
"billVersion": "V2",
"token": {
"symbol": "USDT",
"address": {
"40": "0xefaeee334f0fd1712f9a8cc375f427d9cdd40d73",
"56": "0x55d398326f99059ff775485246999027b3197955",
"137": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
"42161": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9"
},
"decimals": {
"40": 6,
"56": 18,
"137": 6,
"42161": 6
},
"active": true
},
"quoteToken": {
"symbol": "USDT",
"address": {
"40": "0xefaeee334f0fd1712f9a8cc375f427d9cdd40d73",
"56": "0x55d398326f99059ff775485246999027b3197955",
"137": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
"42161": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9"
},
"decimals": {
"40": 6,
"56": 18,
"137": 6,
"42161": 6
},
"active": true
},
"lpToken": {
"symbol": "USDT",
"address": {
"40": "0xefaeee334f0fd1712f9a8cc375f427d9cdd40d73",
"56": "0x55d398326f99059ff775485246999027b3197955",
"137": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f",
"42161": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9"
},
"decimals": {
"40": 6,
"56": 18,
"137": 6,
"42161": 6
},
"active": true
},
"earnToken": {
"symbol": "TRC",
"address": {
"137": "0x40d9fc77027A281d85de1fa660C887E645AE26C3"
},
"decimals": {
"137": 2
},
"liquidityDex": {
"137": "Algebra"
},
"active": true
},
"billNnftAddress": {
"137": "0x0f59f11AA94e19b796e8a834A89a66F328155181"
},
"inactive": false,
"projectLink": "https://metatrace.me/",
"twitter": "https://twitter.com/trace_meta",
"initTime": {
"137": 1701892800
},
"initPrice": {
"137": 0.0948073647
},
"soldOut": false,
"billArt": {
"collection": "Quickswap_Collection1"
},
"bondPartner": "QuickSwap"
},
{
"index": 121,
"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.6.7",
"version": "1.6.9",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
28 changes: 26 additions & 2 deletions 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: 1009
// Polygon Largest ID: 121
// Polygon Largest ID: 122
// Telos Largest ID: 215
// Arbitrum Largest ID: 2004
//Migration Bonds ID: 5007
Expand Down Expand Up @@ -2673,7 +2673,31 @@ const bills: BillsConfig[] = [
/*
Polygon Bills
*/

{
index: 122,
contractAddress: {
[ChainId.MATIC]: '0x1f3b1E69c874D29e6928ebddA91C22454074d8Fa',
},
billType: 'reserve',
billVersion: BillVersion.V2,
token: tokens.usdt,
quoteToken: tokens.usdt,
lpToken: tokens.usdt,
earnToken: tokens.trc,
billNnftAddress: {
[ChainId.MATIC]: '0x0f59f11AA94e19b796e8a834A89a66F328155181',
},
inactive: false,
projectLink: 'https://metatrace.me/',
twitter: 'https://twitter.com/trace_meta',
initTime: { [ChainId.MATIC]: 1701892800 },
initPrice: { [ChainId.MATIC]: 0.0948073647 },
soldOut: false,
billArt: {
collection: BillArtCollection.Quickswap_Collection1,
},
bondPartner: 'QuickSwap',
},
{
index: 121,
contractAddress: {
Expand Down
2 changes: 1 addition & 1 deletion src/constants/dexToZapMapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const dexToZapMapping: Record<LiquidityDex, Partial<Record<ChainId, ZapVe
[ChainId.MAINNET]: ZapVersion.External,
},
[LiquidityDex.QuickswapV2]: {
[ChainId.MATIC]: ZapVersion.External,
[ChainId.MATIC]: ZapVersion.SoulZap,
},
[LiquidityDex.ApeSwapV3]: {},
[LiquidityDex.UniswapV3]: {},
Expand Down

0 comments on commit a0b53f4

Please sign in to comment.