index.js 731 B

1234567891011121314151617181920212223242526272829303132333435
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import { mutations } from './mutations'
  4. import { actions } from './actions'
  5. Vue.use(Vuex)
  6. const state = {
  7. scatter: null,
  8. eos: null,
  9. account: '', // eos账户信息
  10. toAccount: 'eosgetdice12', // 公司EOS账户名
  11. // toAccount: 'eosgetdice12', //公司EOS账户名
  12. balance: 0, // EOS币
  13. money: null, // 零钱
  14. gt: 0, // GT币
  15. mainnet: '',
  16. auctionInfo: null, // 竞拍
  17. invitee: '', // 受邀请者
  18. gtRate: 0, // 挖坑比例
  19. newOffer: null,
  20. newOpen: null,
  21. appid: 'box',
  22. gtErrorCount: 0,
  23. eosErrorCount: 0,
  24. limit: {}, // 用户CPU、NET使用率
  25. publicKey: null // 用户公钥
  26. }
  27. export default new Vuex.Store({
  28. state,
  29. mutations,
  30. actions
  31. })