Skip to content

Commit

Permalink
chore: Add QUO tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
efeDaniels committed Dec 12, 2024
1 parent a81be91 commit 0722007
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
30 changes: 30 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -3755,6 +3755,19 @@
},
"active": true
},
"quo": {
"symbol": "QUO",
"address": {
"56": "0x08b450e4a48C04CDF6DB2bD4cf24057f7B9563fF"
},
"decimals": {
"56": 18
},
"liquidityDex": {
"56": "PancakeSwapV2"
},
"active": true
},
"hntr": {
"symbol": "HNTR",
"address": {
Expand Down Expand Up @@ -5683,6 +5696,23 @@
"56": "https://pancakeswap.finance/v2/add/0x55d398326f99059fF775485246999027B3197955/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944"
}
},
"quoUsdt_PCS": {
"symbol": "QUO-USDT",
"address": {
"56": "0xa387A64D4E1711442FADeF1dd4C697d901DCCf05"
},
"decimals": {
"56": 18
},
"active": true,
"lpToken": true,
"liquidityDex": {
"56": "PancakeSwapV2"
},
"getLpUrl": {
"56": "https://pancakeswap.finance/v2/add/0x55d398326f99059fF775485246999027B3197955/0x08b450e4a48C04CDF6DB2bD4cf24057f7B9563fF"
}
},
"sxchWbnb_PCS": {
"symbol": "SXCH-BNB",
"address": {
Expand Down
27 changes: 27 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3673,6 +3673,17 @@ const tokens: Record<string, Token> = {
},
active: true,
},
quo: {
symbol: 'QUO',
address: {
[ChainId.BSC]: '0x08b450e4a48C04CDF6DB2bD4cf24057f7B9563fF',
},
decimals: { [ChainId.BSC]: 18 },
liquidityDex: {
[ChainId.BSC]: LiquidityDex.PancakeSwapV2,
},
active: true,
},
hntr: {
symbol: 'HNTR',
address: {
Expand Down Expand Up @@ -5490,6 +5501,22 @@ const tokens: Record<string, Token> = {
'https://pancakeswap.finance/v2/add/0x55d398326f99059fF775485246999027B3197955/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944',
},
},
quoUsdt_PCS: {
symbol: 'QUO-USDT',
address: {
[ChainId.BSC]: '0xa387A64D4E1711442FADeF1dd4C697d901DCCf05',
},
decimals: { [ChainId.BSC]: 18 },
active: true,
lpToken: true,
liquidityDex: {
[ChainId.BSC]: LiquidityDex.PancakeSwapV2,
},
getLpUrl: {
[ChainId.BSC]:
'https://pancakeswap.finance/v2/add/0x55d398326f99059fF775485246999027B3197955/0x08b450e4a48C04CDF6DB2bD4cf24057f7B9563fF',
},
},
sxchWbnb_PCS: {
symbol: 'SXCH-BNB',
address: {
Expand Down

0 comments on commit 0722007

Please sign in to comment.