UNPKG
bluebot
Version:
latest (0.5.10)
0.5.10
A bitcoin trading bot for auto trading at various exchanges
bluebot
/
web
/
vue
/
src
/
store
/
modules
/
config
/
mutations.js
11 lines
(9 loc)
•
241 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Vue
from
'vue'
export
const
syncApiKeys
= (
state, apiKeys
) => {
Vue
.
set
(state,
'apiKeys'
, apiKeys);
return
state; }
export
const
syncExchanges
= (
state, exchanges
) => {
Vue
.
set
(state,
'exchanges'
, exchanges);
return
state; }