Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add MMT bond #335

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 95 additions & 0 deletions config/bills.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,99 @@
[
{
"index": 1046,
"contractAddress": {
"56": "0x8476Fd156E0DC723F9f36B126621481aB6720961"
},
"billType": "liquidity",
"billVersion": "V2",
"token": {
"symbol": "USDT",
"address": {
"1": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"40": "0xeFAeeE334F0Fd1712f9a8cc375f427D9Cdd40d73",
"56": "0x55d398326f99059fF775485246999027B3197955",
"97": "0x337610d27c682E347C9cD60BD4b3b107C9d34dDd",
"137": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
"2525": "0x97423A68BAe94b5De52d767a17aBCc54c157c0E5",
"42161": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9"
},
"decimals": {
"1": 6,
"40": 6,
"56": 18,
"97": 18,
"137": 6,
"2525": 6,
"42161": 6
},
"liquidityDex": {
"1": "UniswapV2",
"2525": "External"
},
"active": true
},
"quoteToken": {
"symbol": "MMT",
"address": {
"56": "0xB34966A2A66cb116ebe87b9554c020DcC950E917"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"lpToken": {
"symbol": "MMT-USDT",
"address": {
"56": "0x4037ccEE3A68CF5BDee8A7166a57881C4bae57Ee"
},
"decimals": {
"56": 18
},
"active": true,
"lpToken": true,
"liquidityDex": {
"56": "PancakeSwapV2"
},
"getLpUrl": {
"56": "https://pancakeswap.finance/v2/add/0x55d398326f99059fF775485246999027B3197955/0xB34966A2A66cb116ebe87b9554c020DcC950E917"
}
},
"earnToken": {
"symbol": "MMT",
"address": {
"56": "0xB34966A2A66cb116ebe87b9554c020DcC950E917"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"billNnftAddress": {
"56": "0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9"
},
"inactive": false,
"projectLink": "http://memusic.io",
"twitter": "https://twitter.com/MeMusicNews",
"initTime": {
"56": 1704477600
},
"initPrice": {
"56": 0.0257815220477653
},
"soldOut": false,
"billArt": {
"collection": "ApeBond_Collection1"
},
"tags": ["Entertainment"],
"fullDescription": "MeMusic provides music for everyone! The team has built the first-ever blockchain-based music platform to adopt cryptocurrencies and a traditional business model. MeMusic has reinvented the streaming experience for the artists and users by providing a novel experience to earn rewards by listening and creating. MeMusic: personalizing the music experience beyond borders!"
},
{
"index": 1045,
"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.9.9",
"version": "1.9.10",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
29 changes: 28 additions & 1 deletion src/constants/bills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,41 @@ import { ChainId } from '@ape.swap/sdk'
import tokens from './tokens'
import { BillArtCollection, BillsConfig, BillVersion, MigrationVestingTerms } from '../types'

// BNB Largest ID: 1045
// BNB Largest ID: 1046
// Polygon Largest ID: 137
// Telos Largest ID: 215
// Arbitrum Largest ID: 2004
// ETH Largest ID: 3009
//Migration Bonds ID: 5007

const bills: BillsConfig[] = [
{
index: 1046,
contractAddress: {
[ChainId.BSC]: '0x8476Fd156E0DC723F9f36B126621481aB6720961',
},
billType: 'liquidity',
billVersion: BillVersion.V2,
token: tokens.usdt,
quoteToken: tokens.mmt,
lpToken: tokens.mmtUsdt_PCS,
earnToken: tokens.mmt,
billNnftAddress: {
[ChainId.BSC]: '0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9',
},
inactive: false,
projectLink: 'http://memusic.io',
twitter: 'https://twitter.com/MeMusicNews',
initTime: { [ChainId.BSC]: 1704477600 },
initPrice: { [ChainId.BSC]: 0.0257815220477653 },
soldOut: false,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
tags: ['Entertainment'],
fullDescription:
'MeMusic provides music for everyone! The team has built the first-ever blockchain-based music platform to adopt cryptocurrencies and a traditional business model. MeMusic has reinvented the streaming experience for the artists and users by providing a novel experience to earn rewards by listening and creating. MeMusic: personalizing the music experience beyond borders!',
},
{
index: 1045,
contractAddress: {
Expand Down
Loading