Apply prettier config
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import {ZeroEx} from '0x.js';
|
||||
import { ZeroEx } from '0x.js';
|
||||
import BigNumber from 'bignumber.js';
|
||||
import * as _ from 'lodash';
|
||||
import Paper from 'material-ui/Paper';
|
||||
import TextField from 'material-ui/TextField';
|
||||
import * as React from 'react';
|
||||
import {Blockchain} from 'ts/blockchain';
|
||||
import {Side, TokenByAddress} from 'ts/types';
|
||||
import {constants} from 'ts/utils/constants';
|
||||
import {utils} from 'ts/utils/utils';
|
||||
import { Blockchain } from 'ts/blockchain';
|
||||
import { Side, TokenByAddress } from 'ts/types';
|
||||
import { constants } from 'ts/utils/constants';
|
||||
import { utils } from 'ts/utils/utils';
|
||||
|
||||
interface FillOrderJSONProps {
|
||||
blockchain: Blockchain;
|
||||
@@ -42,17 +42,27 @@ export class FillOrderJSON extends React.Component<FillOrderJSONProps, FillOrder
|
||||
};
|
||||
const hintSalt = ZeroEx.generatePseudoRandomSalt();
|
||||
const feeRecipient = constants.NULL_ADDRESS;
|
||||
const hintOrder = utils.generateOrder(this.props.networkId, exchangeContract, hintSideToAssetToken,
|
||||
hintOrderExpiryTimestamp, '', '', constants.MAKER_FEE,
|
||||
constants.TAKER_FEE, feeRecipient,
|
||||
hintSignatureData, this.props.tokenByAddress, hintSalt);
|
||||
const hintOrder = utils.generateOrder(
|
||||
this.props.networkId,
|
||||
exchangeContract,
|
||||
hintSideToAssetToken,
|
||||
hintOrderExpiryTimestamp,
|
||||
'',
|
||||
'',
|
||||
constants.MAKER_FEE,
|
||||
constants.TAKER_FEE,
|
||||
feeRecipient,
|
||||
hintSignatureData,
|
||||
this.props.tokenByAddress,
|
||||
hintSalt,
|
||||
);
|
||||
const hintOrderJSON = `${JSON.stringify(hintOrder, null, '\t').substring(0, 500)}...`;
|
||||
return (
|
||||
<div>
|
||||
<Paper className="p1 overflow-hidden" style={{height: 164}}>
|
||||
<Paper className="p1 overflow-hidden" style={{ height: 164 }}>
|
||||
<TextField
|
||||
id="orderJSON"
|
||||
hintStyle={{bottom: 0, top: 0}}
|
||||
hintStyle={{ bottom: 0, top: 0 }}
|
||||
fullWidth={true}
|
||||
value={this.props.orderJSON}
|
||||
onChange={this.props.onFillOrderJSONChanged.bind(this)}
|
||||
@@ -60,8 +70,8 @@ export class FillOrderJSON extends React.Component<FillOrderJSONProps, FillOrder
|
||||
multiLine={true}
|
||||
rows={6}
|
||||
rowsMax={6}
|
||||
underlineStyle={{display: 'none'}}
|
||||
textareaStyle={{marginTop: 0}}
|
||||
underlineStyle={{ display: 'none' }}
|
||||
textareaStyle={{ marginTop: 0 }}
|
||||
/>
|
||||
</Paper>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user