Skip to content

Commit

Permalink
chore: added test bond
Browse files Browse the repository at this point in the history
  • Loading branch information
n0mbr3al3at0r10 committed Feb 15, 2024
1 parent 3aca90a commit 63a0ab3
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 0 deletions.
65 changes: 65 additions & 0 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -14149,5 +14149,70 @@
"42161": 1.5528
},
"soldOut": true
},
{
"index": 12345678,
"contractAddress": {
"2424": "0x6257EcAB487f296E7B42aE863dEE79dED0A87123"
},
"billType": "reserve",
"billVersion": "V2",
"token": {
"symbol": "TABOND",
"address": {
"2424": "0x765FAE7497559175A73aa223894047c213CA5c82"
},
"decimals": {
"2424": 18
},
"active": true
},
"quoteToken": {
"symbol": "TABOND",
"address": {
"2424": "0x765FAE7497559175A73aa223894047c213CA5c82"
},
"decimals": {
"2424": 18
},
"active": true
},
"lpToken": {
"symbol": "TABOND",
"address": {
"2424": "0x765FAE7497559175A73aa223894047c213CA5c82"
},
"decimals": {
"2424": 18
},
"active": true
},
"earnToken": {
"symbol": "TABOND",
"address": {
"2424": "0x765FAE7497559175A73aa223894047c213CA5c82"
},
"decimals": {
"2424": 18
},
"active": true
},
"billNnftAddress": {
"2424": "0x9C5ae09373Df86fB34660DdC31cd51444c36DD3F"
},
"inactive": false,
"projectLink": "https://ape.bond/",
"twitter": "https://twitter.com/apebond",
"audit": "https://paladinsec.co/projects/apeswap/",
"initTime": {
"2424": 1702472400
},
"initPrice": {
"2424": 1
},
"soldOut": false,
"billArt": {
"collection": "ApeBond_Collection1"
}
}
]
27 changes: 27 additions & 0 deletions src/constants/bills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4313,6 +4313,33 @@ const bills: BillsConfig[] = [
initPrice: { [ChainId.ARBITRUM]: 1.5528 },
soldOut: true,
},

// TEST
{
index: 12345678, // tabond
contractAddress: {
[ChainId.INEVM_TESTNET]: '0x6257EcAB487f296E7B42aE863dEE79dED0A87123',
},
billType: 'reserve',
billVersion: BillVersion.V2,
token: tokens.tabond,
quoteToken: tokens.tabond,
lpToken: tokens.tabond,
earnToken: tokens.tabond,
billNnftAddress: {
[ChainId.INEVM_TESTNET]: '0x9C5ae09373Df86fB34660DdC31cd51444c36DD3F',
},
inactive: false,
projectLink: 'https://ape.bond/',
twitter: 'https://twitter.com/apebond',
audit: 'https://paladinsec.co/projects/apeswap/',
initTime: { [ChainId.INEVM_TESTNET]: 1702472400 },
initPrice: { [ChainId.INEVM_TESTNET]: 1 },
soldOut: false,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
},
]

export default bills

0 comments on commit 63a0ab3

Please sign in to comment.