Skip to content

Release - v9.4.0

Compare
Choose a tag to compare
@nsjames nsjames released this 14 Oct 02:55
· 540 commits to master since this release

Scatter now supports deep linking!

This means you can use Scatter without any libraries if you don't need return results.
You can also use links inside of Twitter, Youtube, Telegram, or anything else.

Here's an example link for a Transfer that works in telegram or twitter.

Here's an example link for a Transfer that works in a website you control the html for.

<a href="scatter://transfer/?payload=scatterfunds">
    <button>Donate</button>
</a>

This special "transfer" action accepts the following structure to/amount/memo/chain_id
For instance scatter://transfer/?payload=scatterfunds/1.0000/helloworld

If the amount is left at 0 or is missing then the user will be able to select the amount, otherwise it will be a fixed amount.

NOTE: The transfers will always be in base tokens. ( EOS, ETH, TRX, etc )

The deep links also accept any API route that Scatter accepts.

So you can interact with Scatter the same way you would with a native application but using deep linking instead of a socket. For instance:

  • scatter://requestSignature/?payload={...}

In the future you will be able to pass in an optional return deep link which will return results.


Changes

  • Signature Requests ( Actions ) now shows you whether the network you are signing on is the "Endorsed Network" by displaying a Shield next to the network name.
  • Signature Requests also now show you the accounts involved at the top of the popup.
  • Minor UI fixes to switches to make it more apparent which is active.
  • Autofocus single serving input fields ( login / key input )
  • Explanation of value transfers
  • When switching between value transfers and custom transfers it now autoparses the amounts into the token/value.
  • Added update button in settings which is shown next to the version number when an update is available.
  • Changed network protocol to be a drop-down to avoid confusion.
  • Added right-click menu to input fields to allow for copy/paste without keyboard shortcuts.

Bugfixes

  • Fixed MacOS icons.
  • Scatter no longer allows you to open multiple instances of it.
  • Fixed issue with long texts in the app explorer.
  • USD Balance is now only taken from specified tokens to fix the GrandpaETH EOSIO token issue.