diff --git a/CHANGELOG.md b/CHANGELOG.md index b1da692..6b12d3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## Manifest Version 1.3.6 + +- better display of blockchain explorer button +- updated ethers dependency to latest 6.11.1 +- better handling of type sigining +- changed the password input for unlock to not lose focus +- activated focus on password input for unlock on view enter +- disabled integration of fire wallet(in cause user has it installed) with type signing due to incompatibility +- other misc improvements +- added a check when sending native token to check if internet / RPC or Blockchain and show a message to the user +- customize testNets icons to show a small dev icon on the top right corner +- updated testNets templates to include newer networks +- show icons for testNets too in most places + ## Manifest Version 1.3.5 - added copy button to chainId for easier development diff --git a/package.json b/package.json index 7f96ac4..7d4e7ff 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "@ionic/vue-router": "^7.2.3", "@types/chrome": "^0.0.243", "core-js": "^3.32.0", - "ethers": "^6.7.0", + "ethers": "^6.11.1", "vue": "^3.3.4", "vue-router": "^4.2.4" }, diff --git a/public/assets/chain-icons/arbitrum_t.webp b/public/assets/chain-icons/arbitrum_t.webp new file mode 100644 index 0000000..bcd5f7c Binary files /dev/null and b/public/assets/chain-icons/arbitrum_t.webp differ diff --git a/public/assets/chain-icons/base_t.webp b/public/assets/chain-icons/base_t.webp new file mode 100644 index 0000000..df8be4b Binary files /dev/null and b/public/assets/chain-icons/base_t.webp differ diff --git a/public/assets/chain-icons/binance_t.webp b/public/assets/chain-icons/binance_t.webp new file mode 100644 index 0000000..5ac98c4 Binary files /dev/null and b/public/assets/chain-icons/binance_t.webp differ diff --git a/public/assets/chain-icons/eth_t.webp b/public/assets/chain-icons/eth_t.webp new file mode 100644 index 0000000..9aa277d Binary files /dev/null and b/public/assets/chain-icons/eth_t.webp differ diff --git a/public/assets/chain-icons/optimism_t.webp b/public/assets/chain-icons/optimism_t.webp new file mode 100644 index 0000000..5a9fb75 Binary files /dev/null and b/public/assets/chain-icons/optimism_t.webp differ diff --git a/public/assets/chain-icons/polygon_t.webp b/public/assets/chain-icons/polygon_t.webp new file mode 100644 index 0000000..48c3c02 Binary files /dev/null and b/public/assets/chain-icons/polygon_t.webp differ diff --git a/public/assets/chain-icons/xdai_t.webp b/public/assets/chain-icons/xdai_t.webp new file mode 100644 index 0000000..51533b6 Binary files /dev/null and b/public/assets/chain-icons/xdai_t.webp differ diff --git a/src/App.vue b/src/App.vue index 11893d0..534435d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,7 +6,7 @@