diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-28 07:10:40 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-28 07:13:32 +0800 |
commit | c5d6b925e4e04d5b6cfd0623d0a1449ba69d3a30 (patch) | |
tree | 55fbd82f4bb9c5f8e689684238d539bcd4e2fee1 /packages/instant/src/components | |
parent | 47a87e57f1cfa82375c87829320f30049217d657 (diff) | |
download | dexon-sol-tools-c5d6b925e4e04d5b6cfd0623d0a1449ba69d3a30.tar dexon-sol-tools-c5d6b925e4e04d5b6cfd0623d0a1449ba69d3a30.tar.gz dexon-sol-tools-c5d6b925e4e04d5b6cfd0623d0a1449ba69d3a30.tar.bz2 dexon-sol-tools-c5d6b925e4e04d5b6cfd0623d0a1449ba69d3a30.tar.lz dexon-sol-tools-c5d6b925e4e04d5b6cfd0623d0a1449ba69d3a30.tar.xz dexon-sol-tools-c5d6b925e4e04d5b6cfd0623d0a1449ba69d3a30.tar.zst dexon-sol-tools-c5d6b925e4e04d5b6cfd0623d0a1449ba69d3a30.zip |
feat(instant): Quote fetch tracking
Diffstat (limited to 'packages/instant/src/components')
-rw-r--r-- | packages/instant/src/components/zero_ex_instant_provider.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/instant/src/components/zero_ex_instant_provider.tsx b/packages/instant/src/components/zero_ex_instant_provider.tsx index e006a5a5f..9f2c95e36 100644 --- a/packages/instant/src/components/zero_ex_instant_provider.tsx +++ b/packages/instant/src/components/zero_ex_instant_provider.tsx @@ -11,7 +11,7 @@ import { asyncData } from '../redux/async_data'; import { DEFAULT_STATE, DefaultState, State } from '../redux/reducer'; import { store, Store } from '../redux/store'; import { fonts } from '../style/fonts'; -import { AccountState, AffiliateInfo, AssetMetaData, Network, OrderSource } from '../types'; +import { AccountState, AffiliateInfo, AssetMetaData, Network, OrderSource, QuoteFetchedVia } from '../types'; import { analytics, disableAnalytics } from '../util/analytics'; import { assetUtils } from '../util/asset'; import { errorFlasher } from '../util/error_flasher'; @@ -115,7 +115,10 @@ export class ZeroExInstantProvider extends React.Component<ZeroExInstantProvider this._buyQuoteHeartbeat.start(BUY_QUOTE_UPDATE_INTERVAL_TIME_MS); // Trigger first buyquote fetch // tslint:disable-next-line:no-floating-promises - asyncData.fetchCurrentBuyQuoteAndDispatchToStore(state, dispatch, { updateSilently: false }); + asyncData.fetchCurrentBuyQuoteAndDispatchToStore(state, dispatch, { + updateSilently: false, + fetchedVia: QuoteFetchedVia.Manual, + }); // warm up the gas price estimator cache just in case we can't // grab the gas price estimate when submitting the transaction // tslint:disable-next-line:no-floating-promises |