Skip to content

Commit

Permalink
Merge pull request #469 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Merge staging to main
  • Loading branch information
efeDaniels authored Jul 23, 2024
2 parents 5b536cb + 38b48d8 commit ed6fd98
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -30695,7 +30695,7 @@
"initPrice": {
"1": 0.013182138610271742
},
"soldOut": false,
"soldOut": true,
"billArt": {
"collection": "ETH_Collection1"
},
Expand Down
60 changes: 60 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,66 @@
},
"active": true
},
"fomo": {
"symbol": "FOMO",
"address": {
"8822": "0x30a1398cF11cb9E852E5d80aCe7FFd5ec271169E"
},
"decimals": {
"8822": 18
},
"active": true,
"liquidityDex": {
"8822": "MagicSea"
}
},
"rust": {
"symbol": "RUST",
"address": {
"8822": "0x3915b5A673ee6cf126D1042f637Bd10b9931aD08"
},
"decimals": {
"8822": 18
},
"active": true,
"liquidityDex": {
"8822": "MagicSea"
}
},
"iotaRust_MagicSea": {
"symbol": "IOTA-RUST",
"address": {
"8822": "0x932059511253f55b9c288f9A9c4E54561f0Fd05c"
},
"decimals": {
"8822": 18
},
"liquidityDex": {
"8822": "MagicSea"
},
"active": true,
"lpToken": true,
"getLpUrl": {
"8822": "https://app.magicsea.finance/liquidityv2/manual/:8822/add/0x932059511253f55b9c288f9a9c4e54561f0fd05c"
}
},
"iotaFomo_MagicSea": {
"symbol": "IOTA-FOMO",
"address": {
"8822": "0x7ceb96304fbea063d6c461a57ce496213bebe535"
},
"decimals": {
"8822": 18
},
"liquidityDex": {
"8822": "MagicSea"
},
"active": true,
"lpToken": true,
"getLpUrl": {
"8822": "https://app.magicsea.finance/liquidityv2/manual/:8822/add/0x7ceb96304fbea063d6c461a57ce496213bebe535"
}
},
"iota": {
"symbol": "IOTA",
"address": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants/bills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7973,7 +7973,7 @@ const bills: BillsConfig[] = [
'https://github.com/chainsulting/Smart-Contract-Security-Audits/blob/master/Pummel%20Health/Smart_Contract_Audit_Pumlx_Token.pdf',
initTime: { [ChainId.MAINNET]: 1712048400 },
initPrice: { [ChainId.MAINNET]: 0.013182138610271742 },
soldOut: false,
soldOut: true,
billArt: {
collection: BillArtCollection.ETH_Collection1,
},
Expand Down
62 changes: 62 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,68 @@ const tokens: Record<string, Token> = {
},
active: true,
},
fomo: {
symbol: 'FOMO',
address: {
[ChainId.IOTA]: '0x30a1398cF11cb9E852E5d80aCe7FFd5ec271169E',
},
decimals: {
[ChainId.IOTA]: 18,
},
active: true,
liquidityDex: {
[ChainId.IOTA]: LiquidityDex.MagicSea,
},
},
rust: {
symbol: 'RUST',
address: {
[ChainId.IOTA]: '0x3915b5A673ee6cf126D1042f637Bd10b9931aD08',
},
decimals: {
[ChainId.IOTA]: 18,
},
active: true,
liquidityDex: {
[ChainId.IOTA]: LiquidityDex.MagicSea,
},
},
iotaRust_MagicSea: {
symbol: 'IOTA-RUST',
address: {
[ChainId.IOTA]: '0x932059511253f55b9c288f9A9c4E54561f0Fd05c',
},
decimals: {
[ChainId.IOTA]: 18,
},
liquidityDex: {
[ChainId.IOTA]: LiquidityDex.MagicSea,
},
active: true,
lpToken: true,
getLpUrl: {
[ChainId.IOTA]:
'https://app.magicsea.finance/liquidityv2/manual/:8822/add/0x932059511253f55b9c288f9a9c4e54561f0fd05c',
},
},
iotaFomo_MagicSea: {
symbol: 'IOTA-FOMO',
address: {
[ChainId.IOTA]: '0x7ceb96304fbea063d6c461a57ce496213bebe535',
},
decimals: {
[ChainId.IOTA]: 18,
},
liquidityDex: {
[ChainId.IOTA]: LiquidityDex.MagicSea,
},
active: true,
lpToken: true,
getLpUrl: {
[ChainId.IOTA]:
'https://app.magicsea.finance/liquidityv2/manual/:8822/add/0x7ceb96304fbea063d6c461a57ce496213bebe535',
},
},
iota: {
symbol: 'IOTA',
address: {
Expand Down

0 comments on commit ed6fd98

Please sign in to comment.