Skip to content

Commit

Permalink
Merge pull request #227 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add HGPT reserve bond
  • Loading branch information
efeDaniels authored Oct 20, 2023
2 parents d7b94b1 + a6793eb commit 0c3669d
Show file tree
Hide file tree
Showing 5 changed files with 137 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 @@ -1084,6 +1084,92 @@
},
"soldOut": false
},
{
"index": 94,
"contractAddress": {
"56": "0x01a8be18770e8b2Ac2Cf42F10E4BddD6054Cbe86"
},
"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": "HGPT",
"address": {
"56": "0x529C79f6918665EBE250F32eeEAA1d410a0798C6"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"billNnftAddress": {
"56": "0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9"
},
"inactive": false,
"projectLink": "https://hypergpt.ai/",
"twitter": "https://twitter.com/hypergpt",
"audit": "https://skynet.certik.com/projects/hypergpt?utm_source=CMC&utm_campaign=AuditByCertiKLink",
"initTime": {
"56": 1697824800
},
"initPrice": {
"56": 0.00375
},
"soldOut": false,
"billArt": {
"collection": "ApeBond_Collection1"
}
},
{
"index": 93,
"contractAddress": {
Expand Down
13 changes: 13 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -1968,6 +1968,19 @@
},
"active": true
},
"hgpt": {
"symbol": "HGPT",
"address": {
"56": "0x529C79f6918665EBE250F32eeEAA1d410a0798C6"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"brg": {
"symbol": "BRG",
"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.5.33",
"version": "1.5.35",
"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: 93
// BNB Largest ID: 94
// Polygon Largest ID: 109
// Telos Largest ID: 215
// Arbitrum Largest ID: 2003
Expand Down Expand Up @@ -335,6 +335,31 @@ const bills: BillsConfig[] = [
initPrice: { [ChainId.BSC]: 0.0303088 },
soldOut: false,
},
{
index: 94,
contractAddress: {
[ChainId.BSC]: '0x01a8be18770e8b2Ac2Cf42F10E4BddD6054Cbe86',
},
billType: 'reserve',
billVersion: BillVersion.V2,
token: tokens.usdt,
quoteToken: tokens.usdt,
lpToken: tokens.usdt,
earnToken: tokens.hgpt,
billNnftAddress: {
[ChainId.BSC]: '0xB75BE16984A27d3023e1cF744E2587e9Aa8750c9',
},
inactive: false,
projectLink: 'https://hypergpt.ai/',
twitter: 'https://twitter.com/hypergpt',
audit: 'https://skynet.certik.com/projects/hypergpt?utm_source=CMC&utm_campaign=AuditByCertiKLink',
initTime: { [ChainId.BSC]: 1697824800 },
initPrice: { [ChainId.BSC]: 0.00375 },
soldOut: false,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
},
{
index: 93,
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 @@ -1961,6 +1961,17 @@ const tokens: Record<string, Token> = {
},
active: true,
},
hgpt: {
symbol: 'HGPT',
address: {
[ChainId.BSC]: '0x529C79f6918665EBE250F32eeEAA1d410a0798C6',
},
decimals: { [ChainId.BSC]: 18 },
liquidityDex: {
[ChainId.BSC]: LiquidityDex.PancakeSwapV2,
},
active: true,
},
brg: {
symbol: 'BRG',
address: {
Expand Down

0 comments on commit 0c3669d

Please sign in to comment.