feat: prevent eth balance blink
This commit is contained in:
		@@ -72,9 +72,9 @@ export const asyncData = {
 | 
				
			|||||||
    fetchAccountBalanceAndDispatchToStore: async (providerState: ProviderState, dispatch: Dispatch) => {
 | 
					    fetchAccountBalanceAndDispatchToStore: async (providerState: ProviderState, dispatch: Dispatch) => {
 | 
				
			||||||
        const web3Wrapper = providerState.web3Wrapper;
 | 
					        const web3Wrapper = providerState.web3Wrapper;
 | 
				
			||||||
        const account = providerState.account;
 | 
					        const account = providerState.account;
 | 
				
			||||||
        if (account.state !== AccountState.Ready) {
 | 
					        // if (account.state !== AccountState.Ready) {
 | 
				
			||||||
            return;
 | 
					        //     return;
 | 
				
			||||||
        }
 | 
					        // }
 | 
				
			||||||
        try {
 | 
					        try {
 | 
				
			||||||
            const address = account.address;
 | 
					            const address = account.address;
 | 
				
			||||||
            const ethBalanceInWei = await web3Wrapper.getBalanceInWeiAsync(address);
 | 
					            const ethBalanceInWei = await web3Wrapper.getBalanceInWeiAsync(address);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -73,11 +73,16 @@ export const createReducer = (initialState: State) => {
 | 
				
			|||||||
            case ActionTypes.SET_ACCOUNT_STATE_LOCKED:
 | 
					            case ActionTypes.SET_ACCOUNT_STATE_LOCKED:
 | 
				
			||||||
                return reduceStateWithAccount(state, LOCKED_ACCOUNT);
 | 
					                return reduceStateWithAccount(state, LOCKED_ACCOUNT);
 | 
				
			||||||
            case ActionTypes.SET_ACCOUNT_STATE_READY: {
 | 
					            case ActionTypes.SET_ACCOUNT_STATE_READY: {
 | 
				
			||||||
                const account: AccountReady = {
 | 
					                const address = action.data;
 | 
				
			||||||
 | 
					                const newAccount: AccountReady = {
 | 
				
			||||||
                    state: AccountState.Ready,
 | 
					                    state: AccountState.Ready,
 | 
				
			||||||
                    address: action.data,
 | 
					                    address,
 | 
				
			||||||
                };
 | 
					                };
 | 
				
			||||||
                return reduceStateWithAccount(state, account);
 | 
					                const currentAccount = state.providerState.account;
 | 
				
			||||||
 | 
					                if (currentAccount.state === AccountState.Ready && currentAccount.address === address) {
 | 
				
			||||||
 | 
					                    newAccount.ethBalanceInWei = currentAccount.ethBalanceInWei;
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					                return reduceStateWithAccount(state, newAccount);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            case ActionTypes.UPDATE_ACCOUNT_ETH_BALANCE: {
 | 
					            case ActionTypes.UPDATE_ACCOUNT_ETH_BALANCE: {
 | 
				
			||||||
                const { address, ethBalanceInWei } = action.data;
 | 
					                const { address, ethBalanceInWei } = action.data;
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										39
									
								
								yarn.lock
									
									
									
									
									
								
							
							
						
						
									
										39
									
								
								yarn.lock
									
									
									
									
									
								
							@@ -1906,6 +1906,10 @@ aes-js@^0.2.3:
 | 
				
			|||||||
  version "0.2.4"
 | 
					  version "0.2.4"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-0.2.4.tgz#94b881ab717286d015fa219e08fb66709dda5a3d"
 | 
					  resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-0.2.4.tgz#94b881ab717286d015fa219e08fb66709dda5a3d"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					aes-js@^3.1.1:
 | 
				
			||||||
 | 
					  version "3.1.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmjs.org/aes-js/-/aes-js-3.1.2.tgz#db9aabde85d5caabbfc0d4f2a4446960f627146a"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
agent-base@4, agent-base@^4.1.0, agent-base@~4.2.0:
 | 
					agent-base@4, agent-base@^4.1.0, agent-base@~4.2.0:
 | 
				
			||||||
  version "4.2.1"
 | 
					  version "4.2.1"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9"
 | 
					  resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9"
 | 
				
			||||||
@@ -3343,7 +3347,7 @@ bs-logger@0.x:
 | 
				
			|||||||
  dependencies:
 | 
					  dependencies:
 | 
				
			||||||
    fast-json-stable-stringify "^2.0.0"
 | 
					    fast-json-stable-stringify "^2.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bs58@=4.0.1:
 | 
					bs58@=4.0.1, bs58@^4.0.0:
 | 
				
			||||||
  version "4.0.1"
 | 
					  version "4.0.1"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a"
 | 
					  resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a"
 | 
				
			||||||
  dependencies:
 | 
					  dependencies:
 | 
				
			||||||
@@ -3366,6 +3370,14 @@ bs58check@^1.0.8:
 | 
				
			|||||||
    bs58 "^3.1.0"
 | 
					    bs58 "^3.1.0"
 | 
				
			||||||
    create-hash "^1.1.0"
 | 
					    create-hash "^1.1.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					bs58check@^2.1.2:
 | 
				
			||||||
 | 
					  version "2.1.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz#53b018291228d82a5aa08e7d796fdafda54aebfc"
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    bs58 "^4.0.0"
 | 
				
			||||||
 | 
					    create-hash "^1.1.0"
 | 
				
			||||||
 | 
					    safe-buffer "^5.1.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bser@^2.0.0:
 | 
					bser@^2.0.0:
 | 
				
			||||||
  version "2.0.0"
 | 
					  version "2.0.0"
 | 
				
			||||||
  resolved "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
 | 
					  resolved "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
 | 
				
			||||||
@@ -5953,6 +5965,19 @@ ethereumjs-wallet@0.6.0:
 | 
				
			|||||||
    utf8 "^2.1.1"
 | 
					    utf8 "^2.1.1"
 | 
				
			||||||
    uuid "^2.0.1"
 | 
					    uuid "^2.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ethereumjs-wallet@~0.6.0:
 | 
				
			||||||
 | 
					  version "0.6.2"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmjs.org/ethereumjs-wallet/-/ethereumjs-wallet-0.6.2.tgz#67244b6af3e8113b53d709124b25477b64aeccda"
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    aes-js "^3.1.1"
 | 
				
			||||||
 | 
					    bs58check "^2.1.2"
 | 
				
			||||||
 | 
					    ethereumjs-util "^5.2.0"
 | 
				
			||||||
 | 
					    hdkey "^1.0.0"
 | 
				
			||||||
 | 
					    safe-buffer "^5.1.2"
 | 
				
			||||||
 | 
					    scrypt.js "^0.2.0"
 | 
				
			||||||
 | 
					    utf8 "^3.0.0"
 | 
				
			||||||
 | 
					    uuid "^3.3.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ethers@~4.0.4:
 | 
					ethers@~4.0.4:
 | 
				
			||||||
  version "4.0.4"
 | 
					  version "4.0.4"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/ethers/-/ethers-4.0.4.tgz#d3f85e8b27f4b59537e06526439b0fb15b44dc65"
 | 
					  resolved "https://registry.yarnpkg.com/ethers/-/ethers-4.0.4.tgz#d3f85e8b27f4b59537e06526439b0fb15b44dc65"
 | 
				
			||||||
@@ -7486,6 +7511,14 @@ hdkey@^0.7.0, hdkey@^0.7.1:
 | 
				
			|||||||
    coinstring "^2.0.0"
 | 
					    coinstring "^2.0.0"
 | 
				
			||||||
    secp256k1 "^3.0.1"
 | 
					    secp256k1 "^3.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					hdkey@^1.0.0:
 | 
				
			||||||
 | 
					  version "1.1.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmjs.org/hdkey/-/hdkey-1.1.0.tgz#e74e7b01d2c47f797fa65d1d839adb7a44639f29"
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    coinstring "^2.0.0"
 | 
				
			||||||
 | 
					    safe-buffer "^5.1.1"
 | 
				
			||||||
 | 
					    secp256k1 "^3.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
he@1.1.1:
 | 
					he@1.1.1:
 | 
				
			||||||
  version "1.1.1"
 | 
					  version "1.1.1"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd"
 | 
					  resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd"
 | 
				
			||||||
@@ -15572,6 +15605,10 @@ utf8@^2.1.1:
 | 
				
			|||||||
  version "2.1.2"
 | 
					  version "2.1.2"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/utf8/-/utf8-2.1.2.tgz#1fa0d9270e9be850d9b05027f63519bf46457d96"
 | 
					  resolved "https://registry.yarnpkg.com/utf8/-/utf8-2.1.2.tgz#1fa0d9270e9be850d9b05027f63519bf46457d96"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					utf8@^3.0.0:
 | 
				
			||||||
 | 
					  version "3.0.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz#f052eed1364d696e769ef058b183df88c87f69d1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
util-deprecate@~1.0.1:
 | 
					util-deprecate@~1.0.1:
 | 
				
			||||||
  version "1.0.2"
 | 
					  version "1.0.2"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
 | 
					  resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user