13 lines
366 B
TypeScript
13 lines
366 B
TypeScript
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;
|
|
},
|
|
};
|