Skip to content

Commit

Permalink
chore: Add AITECH reserve bond
Browse files Browse the repository at this point in the history
  • Loading branch information
efeDaniels committed Nov 26, 2023
1 parent a422901 commit 2b02d86
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 2 deletions.
86 changes: 86 additions & 0 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -1502,6 +1502,92 @@
"collection": "ApeBond_Collection1"
}
},
{
"index": 1008,
"contractAddress": {
"56": "0x80BfFF3E62384302058a3185e7FF4F087F8be9bA"
},
"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": "AITECH",
"address": {
"56": "0x2d060ef4d6bf7f9e5edde373ab735513c0e4f944"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"billNnftAddress": {
"56": "0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9"
},
"inactive": false,
"projectLink": "https://ai-tech.io/",
"twitter": "https://twitter.com/AITECHio",
"audit": "https://skynet.certik.com/projects/solidus-ai-tech",
"initTime": {
"56": 1700992815
},
"initPrice": {
"56": 0.02511437248
},
"soldOut": false,
"billArt": {
"collection": "ApeBond_Collection1"
}
},
{
"index": 1006,
"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.5.57",
"version": "1.5.58",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
27 changes: 26 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: 1007
// BNB Largest ID: 1008
// Polygon Largest ID: 109
// Telos Largest ID: 215
// Arbitrum Largest ID: 2004
Expand Down Expand Up @@ -463,6 +463,31 @@ const bills: BillsConfig[] = [
collection: BillArtCollection.ApeBond_Collection1,
},
},
{
index: 1008,
contractAddress: {
[ChainId.BSC]: '0x80BfFF3E62384302058a3185e7FF4F087F8be9bA',
},
billType: 'reserve',
billVersion: BillVersion.V2,
token: tokens.usdt,
quoteToken: tokens.usdt,
lpToken: tokens.usdt,
earnToken: tokens.aitech,
billNnftAddress: {
[ChainId.BSC]: '0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9',
},
inactive: false,
projectLink: 'https://ai-tech.io/',
twitter: 'https://twitter.com/AITECHio',
audit: 'https://skynet.certik.com/projects/solidus-ai-tech',
initTime: { [ChainId.BSC]: 1700992815 },
initPrice: { [ChainId.BSC]: 0.02511437248 },
soldOut: false,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
},
{
index: 1006,
contractAddress: {
Expand Down

0 comments on commit 2b02d86

Please sign in to comment.