Skip to content

Commit

Permalink
Merge pull request #603 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
update soldout flags
  • Loading branch information
ape-fede authored Dec 17, 2024
2 parents 33fa00f + 16e279b commit df8761f
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 10 deletions.
10 changes: 5 additions & 5 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -1480,7 +1480,7 @@
"initPrice": {
"8453": 0.005450086440702347
},
"soldOut": false,
"soldOut": true,
"billArt": {
"collection": "ApeBond_Collection1"
},
Expand Down Expand Up @@ -1644,7 +1644,7 @@
"initPrice": {
"8453": 0.005450086440702347
},
"soldOut": false,
"soldOut": true,
"billArt": {
"collection": "ApeBond_Collection1"
},
Expand Down Expand Up @@ -13856,7 +13856,7 @@
"initTime": {
"137": 1732711586
},
"soldOut": false,
"soldOut": true,
"billArt": {
"collection": "Quickswap_Collection1"
},
Expand Down Expand Up @@ -18356,7 +18356,7 @@
"initTime": {
"42161": 1723548893
},
"soldOut": false,
"soldOut": true,
"billArt": {
"collection": "ApeBond_Collection1"
},
Expand Down Expand Up @@ -20250,7 +20250,7 @@
"initTime": {
"1": 1730189346
},
"soldOut": false,
"soldOut": true,
"billArt": {
"collection": "ETH_Collection1"
},
Expand Down
13 changes: 13 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,19 @@
"1": "UniswapV2"
}
},
"bunny": {
"symbol": "BUNNY",
"address": {
"1": "0xE9aA901D12D401361951F6b143e39ce8d4D42983"
},
"decimals": {
"1": 18
},
"active": true,
"liquidityDex": {
"1": "UniswapV2"
}
},
"bpad": {
"symbol": "BPAD",
"address": {
Expand Down
10 changes: 5 additions & 5 deletions src/constants/bills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ const bills: BillsConfig[] = [
twitter: 'https://x.com/mafia_on_base',
initTime: { [ChainId.BASE]: 1716217474 },
initPrice: { [ChainId.BASE]: 0.005450086440702347 },
soldOut: false,
soldOut: true,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
Expand Down Expand Up @@ -837,7 +837,7 @@ const bills: BillsConfig[] = [
twitter: 'https://twitter.com/superbestcoin',
initTime: { [ChainId.BASE]: 1716217474 },
initPrice: { [ChainId.BASE]: 0.005450086440702347 },
soldOut: false,
soldOut: true,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
Expand Down Expand Up @@ -6760,7 +6760,7 @@ Blockasset’s media arm has amassed over 250 million views, working with top at
twitter: 'https://x.com/MedievalEmpires',
audit: 'https://www.medievalempires.com/static/audit_report-89967b1290db095d7275ce21e8aa5d44.pdf',
initTime: { [ChainId.MATIC]: 1732711586 },
soldOut: false,
soldOut: true,
billArt: {
collection: BillArtCollection.Quickswap_Collection1,
},
Expand Down Expand Up @@ -9009,7 +9009,7 @@ Blockasset’s media arm has amassed over 250 million views, working with top at
projectLink: 'https://ledgity.finance/',
twitter: 'https://twitter.com/LedgityYield',
initTime: { [ChainId.ARBITRUM]: 1723548893 },
soldOut: false,
soldOut: true,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
Expand Down Expand Up @@ -10000,7 +10000,7 @@ Blockasset’s media arm has amassed over 250 million views, working with top at
projectLink: 'https://gptprotocol.org/',
twitter: 'https://twitter.com/gpt_protocol',
initTime: { [ChainId.MAINNET]: 1730189346 },
soldOut: false,
soldOut: true,
billArt: {
collection: BillArtCollection.ETH_Collection1,
},
Expand Down
13 changes: 13 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,19 @@ const tokens: Record<string, Token> = {
[ChainId.MAINNET]: LiquidityDex.UniswapV2,
},
},
bunny: {
symbol: 'BUNNY',
address: {
[ChainId.MAINNET]: '0xE9aA901D12D401361951F6b143e39ce8d4D42983',
},
decimals: {
[ChainId.MAINNET]: 18,
},
active: true,
liquidityDex: {
[ChainId.MAINNET]: LiquidityDex.UniswapV2,
},
},
bpad: {
symbol: 'BPAD',
address: {
Expand Down

0 comments on commit df8761f

Please sign in to comment.