Skip to content

Commit

Permalink
Merge pull request #282 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add MV bond
  • Loading branch information
efeDaniels authored Jan 26, 2024
2 parents 1d1a2e6 + de4fa15 commit 5352001
Show file tree
Hide file tree
Showing 3 changed files with 118 additions and 2 deletions.
87 changes: 87 additions & 0 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -10019,6 +10019,93 @@
"inactive": true,
"soldOut": true
},
{
"index": 128,
"contractAddress": {
"137": "0xE504157665Ac78301C793411542446997c33697b"
},
"billType": "liquidity",
"billVersion": "V2",
"token": {
"symbol": "MV",
"address": {
"137": "0xA3c322Ad15218fBFAEd26bA7f616249f7705D945"
},
"decimals": {
"137": 18
},
"liquidityDex": {
"137": "QuickswapV2"
},
"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": "MV-USDT",
"address": {
"137": "0x690a87Ed8972e451e755b8F2dC1fc2B28e3c6566"
},
"decimals": {
"137": 18
},
"liquidityDex": {
"137": "QuickswapV2"
},
"active": true,
"lpToken": true,
"getLpUrl": {
"137": "https://quickswap.exchange/#/pools/v2?currency0=0xA3c322Ad15218fBFAEd26bA7f616249f7705D945&currency1=0xc2132D05D31c914a87C6611C10748AEb04B58e8F"
}
},
"earnToken": {
"symbol": "MV",
"address": {
"137": "0xA3c322Ad15218fBFAEd26bA7f616249f7705D945"
},
"decimals": {
"137": 18
},
"liquidityDex": {
"137": "QuickswapV2"
},
"active": true
},
"billNnftAddress": {
"137": "0x0f59f11AA94e19b796e8a834A89a66F328155181"
},
"inactive": false,
"projectLink": "https://genso.game/en/",
"twitter": "https://twitter.com/genso_meta",
"audit": "https://skynet.certik.com/projects/gensokishi-online-metaworld",
"initTime": {
"137": 1701892800
},
"initPrice": {
"137": 0.00254
},
"soldOut": false,
"billArt": {
"collection": "Quickswap_Collection1"
},
"bondPartner": "QuickSwap",
"tags": ["Gaming"],
"fullDescription": "Genso is the metaverse incarnation of “Elemental Knights Online,” which won the 2012 Game of the year (Gold) in Taiwan. Utilizing blockchain technology, they aim to create a new economy within the virtual world. Web3, RPG & Metaverse are all combined within the realm of Gensokishi."
},
{
"index": 127,
"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.36",
"version": "1.8.37",
"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: 1022
// Polygon Largest ID: 127
// Polygon Largest ID: 128
// Telos Largest ID: 215
// Arbitrum Largest ID: 2004
//Migration Bonds ID: 5007
Expand Down Expand Up @@ -3048,6 +3048,35 @@ const bills: BillsConfig[] = [
/*
Polygon Bills
*/
{
index: 128,
contractAddress: {
[ChainId.MATIC]: '0xE504157665Ac78301C793411542446997c33697b',
},
billType: 'liquidity',
billVersion: BillVersion.V2,
token: tokens.mv,
quoteToken: tokens.usdt,
lpToken: tokens.mvUsdt_QS,
earnToken: tokens.mv,
billNnftAddress: {
[ChainId.MATIC]: '0x0f59f11AA94e19b796e8a834A89a66F328155181',
},
inactive: false,
projectLink: 'https://genso.game/en/',
twitter: 'https://twitter.com/genso_meta',
audit: 'https://skynet.certik.com/projects/gensokishi-online-metaworld',
initTime: { [ChainId.MATIC]: 1701892800 },
initPrice: { [ChainId.MATIC]: 0.00254 },
soldOut: false,
billArt: {
collection: BillArtCollection.Quickswap_Collection1,
},
bondPartner: 'QuickSwap',
tags: ['Gaming'],
fullDescription:
'Genso is the metaverse incarnation of “Elemental Knights Online,” which won the 2012 Game of the year (Gold) in Taiwan. Utilizing blockchain technology, they aim to create a new economy within the virtual world. Web3, RPG & Metaverse are all combined within the realm of Gensokishi.',
},
{
index: 127,
contractAddress: {
Expand Down

0 comments on commit 5352001

Please sign in to comment.