aboutsummaryrefslogblamecommitdiffstats
path: root/packages/contracts/util/balances.ts
blob: 5800a200873371c40dcd4254d1e2cc61e0099049 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                  


                                       




                                                          

                                                        
                                                                                       

                                                              


                                                       

                                                                           






                                                                                       
         
                               
     
 
import {bigNumberConfigs} from '@0xproject/utils';
import {BigNumber} from 'bignumber.js';
import * as _ from 'lodash';

import {BalancesByOwner, ContractInstance} from './types';

bigNumberConfigs.configure();

export class Balances {
    private _tokenContractInstances: ContractInstance[];
    private _ownerAddresses: string[];
    constructor(tokenContractInstances: ContractInstance[], ownerAddresses: string[]) {
        this._tokenContractInstances = tokenContractInstances;
        this._ownerAddresses = ownerAddresses;
    }
    public async getAsync(): Promise<BalancesByOwner> {
        const balancesByOwner: BalancesByOwner = {};
        for (const tokenContractInstance of this._tokenContractInstances) {
            for (const ownerAddress of this._ownerAddresses) {
                let balance = await tokenContractInstance.balanceOf(ownerAddress);
                balance = new BigNumber(balance);
                if (_.isUndefined(balancesByOwner[ownerAddress])) {
                    balancesByOwner[ownerAddress] = {};
                }
                balancesByOwner[ownerAddress][tokenContractInstance.address] = balance;
            }
        }
        return balancesByOwner;
    }
}