We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 198f66c commit ba36e14Copy full SHA for ba36e14
projects/helper/bitcoin-book/fetchers.js
@@ -46,7 +46,7 @@ module.exports = {
46
const users = await api.call({ abi: 'address[]:getQualifiedUsers', target: '0xbee335BB44e75C4794a0b9B54E8027b111395943' })
47
const userInfos = await api.multiCall({ abi: abi.getQualifiedUserInfo, target: '0xbee335BB44e75C4794a0b9B54E8027b111395943', calls: users })
48
userInfos.forEach(i => staticAddresses.push(i.depositAddress))
49
- return staticAddresses
+ return Array.from(new Set(staticAddresses))
50
},
51
52
b14g: async () => {
0 commit comments