diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-08-14 23:52:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-14 23:52:40 +0800 |
commit | ef0edc6e32d98d2fca54076f38cb317f43704900 (patch) | |
tree | 3c110e3aa936721d90537074ea187cbfb5f5991c /internal/web3ext | |
parent | 6ca59d98f88d4b4cc8bdeb2f023ff8c1fa228c6f (diff) | |
parent | 02656f9f614374b3f30b0cc57562e31c570cdf3d (diff) | |
download | go-tangerine-ef0edc6e32d98d2fca54076f38cb317f43704900.tar go-tangerine-ef0edc6e32d98d2fca54076f38cb317f43704900.tar.gz go-tangerine-ef0edc6e32d98d2fca54076f38cb317f43704900.tar.bz2 go-tangerine-ef0edc6e32d98d2fca54076f38cb317f43704900.tar.lz go-tangerine-ef0edc6e32d98d2fca54076f38cb317f43704900.tar.xz go-tangerine-ef0edc6e32d98d2fca54076f38cb317f43704900.tar.zst go-tangerine-ef0edc6e32d98d2fca54076f38cb317f43704900.zip |
Merge pull request #14885 from karalabe/trezor-boom
accounts, console, internal: support trezor hardware wallet
Diffstat (limited to 'internal/web3ext')
-rw-r--r-- | internal/web3ext/web3ext.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index 44fabd6ab..bf1db8819 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -493,6 +493,11 @@ web3._extend({ params: 2 }), new web3._extend.Method({ + name: 'openWallet', + call: 'personal_openWallet', + params: 2 + }), + new web3._extend.Method({ name: 'deriveAccount', call: 'personal_deriveAccount', params: 3 |