This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as ccxt from 'ccxt'; | |
| import * as functions from 'firebase-functions'; | |
| const exchangeId = 'binance', | |
| exchangeClass = ccxt[exchangeId], | |
| exchange = new exchangeClass({ | |
| apiKey: functions.config().binance.apikey, | |
| secret: functions.config().binance.secret, | |
| timeout: 30000, | |
| enableRateLimit: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Collection Created | |
| Add Collection Sections* | |
| Click Add section button -> Editing other section | |
| Click Submit Create Collection Button -> Collection Created | |
| Drag and drop sections IF more than one -> Sections reordered | |
| Editing other section | |
| Untouched other section* | |
| Click Remove section button -> Default editing section 1 | |
| Same as Default editing section 1 | |
| Sections reordered |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react' | |
| import { render } from 'react-dom' | |
| import { Router, browserHistory, match } from 'react-router' | |
| import createStore from '../shared/lib/create-store.js' | |
| import ContextProvider from '../shared/lib/context-provider.js' | |
| import { fetchDataOnLocationMatch } from '../shared/lib/fetch-data.js' | |
| import Root from './Root.jsx' | |
| import routes from '../shared/routes.jsx' | |
| import { AppContainer } from 'react-hot-loader' | |
| import { observable, computed, autorun } from 'mobx' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def authenticate | |
| @user = Token.validate request.headers['AUTH-TOKEN'] | |
| end |
NewerOlder