mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-30 05:45:32 +08:00
* Added NPM token address * Added treasury details * code refactor --------- Co-authored-by: g1nt0ki <99907941+g1nt0ki@users.noreply.github.com>
18 lines
470 B
JavaScript
18 lines
470 B
JavaScript
const { treasuryExports } = require("../helper/treasury");
|
|
|
|
const npm = {
|
|
ethereum: "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4",
|
|
arbitrum: "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4",
|
|
bsc: "0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4",
|
|
};
|
|
const treasury = {
|
|
arbitrum: "0x808ca06eec8d8645386be4293a7f4428d4994f5b",
|
|
}
|
|
|
|
module.exports = treasuryExports({
|
|
arbitrum: {
|
|
owners: [treasury.arbitrum],
|
|
ownTokens: [npm.arbitrum],
|
|
resolveUniV3: true,
|
|
},
|
|
}) |