ens-usernames/app/actions/accounts.js

52 lines
2.0 KiB
JavaScript
Raw Normal View History

2018-08-14 14:10:31 +00:00
import ERC20Token from 'Embark/contracts/ERC20Token'
import UsernameRegistrar from 'Embark/contracts/UsernameRegistrar'
2018-08-14 14:10:31 +00:00
import TestToken from 'Embark/contracts/TestToken'
import { getDefaultAccount } from '../utils/web3Helpers'
2018-06-01 16:45:11 +00:00
import { actions as accountActions } from '../reducers/accounts'
2018-07-18 18:16:20 +00:00
import { isNil } from 'lodash'
const { receiveAccounts, receiveStatusContactCode } = accountActions
const CONTACT_CODE = 'CONTACT_CODE'
const STATUS_API_REQUEST = 'STATUS_API_REQUEST'
const hasContactCode = () => !isNil(STATUS_API) && !isNil(STATUS_API[CONTACT_CODE])
2018-08-29 14:58:45 +00:00
const statusApiSuccess = event => event.detail.permissions[0] === CONTACT_CODE
const getContactCode = event => event.detail.data[CONTACT_CODE]
2018-06-01 16:45:11 +00:00
export const fetchAndDispatchAccountsWithBalances = (web3, dispatch) => {
web3.eth.getAccounts((err, addresses) => {
if (addresses) {
const defaultAccount = web3.eth.defaultAccount || addresses[0]
const accounts = addresses.map(async address => {
const balance = await web3.eth.getBalance(address, 'latest')
const SNTBalance = await ERC20Token.methods.balanceOf(address).call()
return { address, balance, SNTBalance }
2018-06-01 16:45:11 +00:00
})
Promise.all(accounts).then(accounts => {
dispatch(receiveAccounts(defaultAccount, accounts))
})
}
})
}
2018-07-18 18:16:20 +00:00
export const checkAndDispatchStatusContactCode = dispatch => {
2018-08-29 14:58:45 +00:00
window.addEventListener('statusapi', function (event) {
if (statusApiSuccess(event)) dispatch(receiveStatusContactCode(getContactCode(event)))
2018-07-18 18:16:20 +00:00
});
setTimeout(
() => { window.postMessage({ type: STATUS_API_REQUEST, permissions: ["CONTACT_CODE", "CONTACTS"] }, '*') },
1000
)
2018-07-18 18:16:20 +00:00
}
2018-08-14 14:10:31 +00:00
export const fetchAndDispatchSNTAllowance = dispatch => {
const { methods: { allowance } } = TestToken;
const { receiveSntAllowance } = accountActions;
const spender = UsernameRegistrar._address;
2018-08-14 14:10:31 +00:00
allowance(getDefaultAccount(), spender)
.call()
.then(allowance => {
dispatch(receiveSntAllowance(allowance))
})
}