Skip to content

Commit

Permalink
Merge pull request #284 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add FAV token
  • Loading branch information
efeDaniels authored Jan 29, 2024
2 parents 2eaefa6 + b180ac7 commit 59fbb2d
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 2 deletions.
88 changes: 88 additions & 0 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -1727,6 +1727,94 @@
"tags": ["Cex Fund"],
"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."
},
{
"index": 1023,
"contractAddress": {
"56": "0x10CDAc2FD873cAceD95Ca7e532dB2766cb55D812"
},
"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": "FAV",
"address": {
"56": "0x1A076E4633FA139D7B908b88326de603Fbe8c199"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV3"
},
"active": true
},
"billNnftAddress": {
"56": "0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9"
},
"inactive": false,
"projectLink": "https://home.alphaverse.com/",
"twitter": "https://twitter.com/AlphaVersegame",
"audit": "https://omniscia.io/reports/fav-token-implementation-64805de3e824970014254148",
"initTime": {
"56": 1704891600
},
"initPrice": {
"56": 0.00173967992950712
},
"soldOut": false,
"billArt": {
"collection": "ApeBond_Collection1"
},
"tags": ["Metaverse"],
"fullDescription": "AlphaVerse is always growing with new universes getting connected. Some are native to AlphaVerse, some are developed by their partners and third parties. Explore all of them seamlessly with one account. AlphaVerse: the central Hub where multiple universes get connected."
},
{
"index": 1022,
"contractAddress": {
Expand Down
13 changes: 13 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -2267,6 +2267,19 @@
},
"active": true
},
"fav": {
"symbol": "FAV",
"address": {
"56": "0x1A076E4633FA139D7B908b88326de603Fbe8c199"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV3"
},
"active": true
},
"hgpt": {
"symbol": "HGPT",
"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.8.38",
"version": "1.8.39",
"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: 1022
// BNB Largest ID: 1023
// Polygon Largest ID: 128
// Telos Largest ID: 215
// Arbitrum Largest ID: 2004
Expand Down Expand Up @@ -517,6 +517,34 @@ const bills: BillsConfig[] = [
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.',
},
{
index: 1023,
contractAddress: {
[ChainId.BSC]: '0x10CDAc2FD873cAceD95Ca7e532dB2766cb55D812',
},
billType: 'reserve',
billVersion: BillVersion.V2,
token: tokens.usdt,
quoteToken: tokens.usdt,
lpToken: tokens.usdt,
earnToken: tokens.fav,
billNnftAddress: {
[ChainId.BSC]: '0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9',
},
inactive: false,
projectLink: 'https://home.alphaverse.com/',
twitter: 'https://twitter.com/AlphaVersegame',
audit: 'https://omniscia.io/reports/fav-token-implementation-64805de3e824970014254148',
initTime: { [ChainId.BSC]: 1704891600 },
initPrice: { [ChainId.BSC]: 0.00173967992950712 },
soldOut: false,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
tags: ['Metaverse'],
fullDescription:
'AlphaVerse is always growing with new universes getting connected. Some are native to AlphaVerse, some are developed by their partners and third parties. Explore all of them seamlessly with one account. AlphaVerse: the central Hub where multiple universes get connected.',
},
{
index: 1022,
contractAddress: {
Expand Down
11 changes: 11 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2259,6 +2259,17 @@ const tokens: Record<string, Token> = {
},
active: true,
},
fav: {
symbol: 'FAV',
address: {
[ChainId.BSC]: '0x1A076E4633FA139D7B908b88326de603Fbe8c199',
},
decimals: { [ChainId.BSC]: 18 },
liquidityDex: {
[ChainId.BSC]: LiquidityDex.PancakeSwapV3,
},
active: true,
},
hgpt: {
symbol: 'HGPT',
address: {
Expand Down

0 comments on commit 59fbb2d

Please sign in to comment.