15 lines
		
	
	
		
			675 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			675 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { BigNumber } from '@0x/utils';
 | 
						|
 | 
						|
export const constants = {
 | 
						|
    MAX_UINT_64: new BigNumber(2).pow(256).minus(1),
 | 
						|
    TOKEN_MULTIPLIER: new BigNumber(10).pow(18),
 | 
						|
    INITIAL_POOL_ID: '0x0000000000000000000000000000000100000000000000000000000000000000',
 | 
						|
    NIL_POOL_ID: '0x0000000000000000000000000000000000000000000000000000000000000000',
 | 
						|
    NIL_ADDRESS: '0x0000000000000000000000000000000000000000',
 | 
						|
    INITIAL_EPOCH: new BigNumber(0),
 | 
						|
    INITIAL_TIMELOCK_PERIOD: new BigNumber(0),
 | 
						|
    EPOCH_DURATION_IN_SECONDS: new BigNumber(1000), // @TODO SET FOR DEPLOYMENT*/
 | 
						|
    TIMELOCK_DURATION_IN_EPOCHS: new BigNumber(3), // @TODO SET FOR DEPLOYMENT
 | 
						|
    CHAIN_ID: 1,
 | 
						|
};
 |