- adds new configuration property
crypoAddressLens.explorers
to configure block explorers to show up on address hover. It expects an object, key of this object is the explorers name, value is the URL of the block explorer which is suffixed with the address to lookup.
-
deprecates configuration properties of the scheme
cryptoAddressLens.[network].rpc
andcryptoAddressLens.[network].enabled
. -
migrates ability to setup networks and rpcs into new configuration property called
cryptoAddressLens.rpcs
. It expects an objects which keys are the network name and the value is the RPC url. Passfalse
as value to deactivate the network.
- restores access to README and CHANGELOG from VSCode/marketplace
- overhaul repository structure to make the extension better extendable and maintainable for the future.
- Not showing symbol in hover message anymore. The implementation caused flickering when trying to reach for a blockscanner link with the mouse.
-
showing token symbol were not shown anymore at the end of the current line,
-
Code actions to convert selected address were only shown every other time.
-
QuickFix actions to fix selected addresses checksum or convert it into a lowercase address,
-
disable address lookup for certain chains in the plugin settings or use extension configuration property:
cryptoAddressLens.[network].enabled=boolean
, -
change default RPC servers in the plugin settings or use extension configuration property:
cryptoAddressLens.[network].rpc=string
.
- disposes token name and symbol decoration more consistently now.
- shows "symbol()" value in line if available
- decorates all visible editors on startup
- always decorates the active editor, even without saving the file
- properly decorate valid addresses at end of file or line
- using
onStartupFinished
asactivationEvents
to be language agnostic
- icon from README file
- extension icon
- demo gif showcasing the extension functionality
- changes
invalid checksum
case color to red 🔴 instead of orange 🟠
- detects multiple address per line
- simplifies styling to clash less with used editor theme
- does not detect transaction hashes as addresses anymore
Initial release of crypto-address-lens
.