aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/test/utils/token_utils.ts
blob: 76ee80b585cb59dfce946241fff4e9e51fa564a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { generatePseudoRandomSalt } from '@0xproject/order-utils';
import { BigNumber } from '@0xproject/utils';

import { artifacts } from '../../src/artifacts';

import { constants } from './constants';

export const tokenUtils = {
    getProtocolTokenAddress(): string {
        return artifacts.ZRXToken.networks[constants.TESTRPC_NETWORK_ID].address;
    },
};