Skip to content

Commit d9d779f

Browse files
astrarizong1nt0ki
andauthored
Updated PulsarMoney project addresses (DefiLlama#8955)
* added adapter for pulsar-money tvl * added owner address * minor fix * minor fix * added SocialPayments and SmartTransfers modules TVL * minor fix * add one more address * undo file changes * undo changes * last minor changes --------- Co-authored-by: g1nt0ki <[email protected]>
1 parent c326dec commit d9d779f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

projects/helper/chain/elrond.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ async function sumTokens({ owner, owners = [], tokens = [], balances = {}, black
6464
await Promise.all(tokensAndOwners.map(([token, owner]) => sumTokens({ owners: [owner], tokens: [token], balances, blacklistedTokens, whitelistedTokens, })))
6565
return balances
6666
}
67-
67+
6868
const { errors } = await PromisePool
6969
.withConcurrency(5)
7070
.for(owners)

projects/pulsar-money/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
const { sumTokensExport } = require("../helper/chain/elrond");
22
const { getCoreAssets } = require("../helper/tokenMapping");
33

4-
// const API_URL = "https://pulsar-money-prod.herokuapp.com/metrics/tvl";
5-
64
const vault = "erd1qqqqqqqqqqqqqpgq39rqpn2xvm0ykl2ccaa4h5zk5c9r647wdteswmap9l";
75
const socialPayments =
86
"erd1qqqqqqqqqqqqqpgq85tlmqudva0fyawkkuc6qga60kclzyzj60ws7kxxf5";
9-
const smartTransfers =
7+
const smartTransfers1 =
108
"erd1qqqqqqqqqqqqqpgqd6l8ayd0zxfekl53geyxgjzjxu3ceyca60wsje6asx";
9+
const smartTransfers2 =
10+
"erd1qqqqqqqqqqqqqpgq2jjxnsa025me89a4pe5az9dujz28us7t60wsz3mcxs";
1111

12-
const ADDRESSES = [vault, socialPayments, smartTransfers];
12+
const ADDRESSES = [vault, socialPayments, smartTransfers1, smartTransfers2];
1313

1414
module.exports = {
1515
timetravel: false,

0 commit comments

Comments
 (0)