mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
web3 - set defaultAccount
This commit is contained in:
parent
2c47fb14e0
commit
38582f6aae
@ -32,7 +32,9 @@ remoteProvider.on('error', console.error.bind(console))
|
|||||||
//
|
//
|
||||||
|
|
||||||
// handle accounts cache
|
// handle accounts cache
|
||||||
var accountsCache = []
|
var accountsCache = JSON.parse(localStorage['MetaMask-Accounts'] || '[]')
|
||||||
|
web3.eth.defaultAccount = accounts[0]
|
||||||
|
|
||||||
setInterval(populateAccountsCache, 4000)
|
setInterval(populateAccountsCache, 4000)
|
||||||
function populateAccountsCache(){
|
function populateAccountsCache(){
|
||||||
remoteProvider.sendAsync(createPayload({
|
remoteProvider.sendAsync(createPayload({
|
||||||
@ -44,6 +46,7 @@ function populateAccountsCache(){
|
|||||||
// update localStorage
|
// update localStorage
|
||||||
var accounts = response.result
|
var accounts = response.result
|
||||||
if (accounts.toString() !== accountsCache.toString()) {
|
if (accounts.toString() !== accountsCache.toString()) {
|
||||||
|
web3.eth.defaultAccount = accounts[0]
|
||||||
accountsCache = accounts
|
accountsCache = accounts
|
||||||
localStorage['MetaMask-Accounts'] = JSON.stringify(accounts)
|
localStorage['MetaMask-Accounts'] = JSON.stringify(accounts)
|
||||||
}
|
}
|
||||||
@ -58,13 +61,11 @@ remoteProvider.send = function(payload){
|
|||||||
|
|
||||||
case 'eth_accounts':
|
case 'eth_accounts':
|
||||||
// read from localStorage
|
// read from localStorage
|
||||||
accountsCache = JSON.parse(localStorage['MetaMask-Accounts'] || '[]')
|
|
||||||
result = accountsCache
|
result = accountsCache
|
||||||
break
|
break
|
||||||
|
|
||||||
case 'eth_coinbase':
|
case 'eth_coinbase':
|
||||||
// read from localStorage
|
// read from localStorage
|
||||||
accountsCache = JSON.parse(localStorage['MetaMask-Accounts'] || '[]')
|
|
||||||
result = accountsCache[0] || '0x0000000000000000000000000000000000000000'
|
result = accountsCache[0] || '0x0000000000000000000000000000000000000000'
|
||||||
break
|
break
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user