Files
ShibaPunkArmy f457eb72d9 Updated the index.ts of PunkSwap and added the factory address on Scroll Mainnet (#7685)
* Added PunkSwap Factory

Added PunkSwap Factory and Masterchef on Shibarium

opBNB has only Factory for now and was also added into the index.js file

* edited Punkswap Index.js

deleted syntax error

* update index.js PunkSwap

updated index.js for Punkswap DEX

* added scroll Factory of PunkSwap

added Factory of PunkSwap on Scroll Mainnet
2023-10-12 06:32:05 +05:30

13 lines
449 B
JavaScript

const {getUniTVL} = require("../helper/unknownTokens");
module.exports = {
op_bnb: {
tvl: getUniTVL({ factory: "0x5640113EA7F369E6DAFbe54cBb1406E5BF153E90", useDefaultCoreAssets: true,})
},
shibarium: {
tvl: getUniTVL({ factory: "0x5640113EA7F369E6DAFbe54cBb1406E5BF153E90", useDefaultCoreAssets: true,})
},
scroll: {
tvl: getUniTVL({ factory: "0x5640113EA7F369E6DAFbe54cBb1406E5BF153E90", useDefaultCoreAssets: true,})
}
};