mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-29 13:25:30 +08:00
* 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
13 lines
449 B
JavaScript
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,})
|
|
}
|
|
}; |