mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-05-31 18:01:04 +00:00
Bump deps (#239)
This commit is contained in:
@@ -17,9 +17,9 @@
|
||||
"./ledger/transportsWeb": "./ledger/transportsEmpty"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.6.3",
|
||||
"@ledgerhq/hw-transport-u2f": "^4.72.3",
|
||||
"@ledgerhq/hw-transport-webusb": "^4.72.3",
|
||||
"@babel/runtime": "^7.7.1",
|
||||
"@ledgerhq/hw-transport-u2f": "^4.73.4",
|
||||
"@ledgerhq/hw-transport-webusb": "^4.73.4",
|
||||
"@types/ledgerhq__hw-transport-node-hid": "^4.21.1",
|
||||
"@types/ledgerhq__hw-transport-u2f": "^4.21.1",
|
||||
"@types/mkdirp": "^0.5.2",
|
||||
@@ -30,12 +30,12 @@
|
||||
"store": "^2.0.12"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@polkadot/keyring": "^1.7.0-beta.4",
|
||||
"@polkadot/types": "^0.96.0-beta.33",
|
||||
"@polkadot/util": "^1.7.0-beta.4"
|
||||
"@polkadot/keyring": "^1.7.0-beta.5",
|
||||
"@polkadot/types": "^0.96.0-beta.34",
|
||||
"@polkadot/util": "^1.7.0-beta.5"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@ledgerhq/hw-transport-node-hid": "^4.72.3"
|
||||
"@ledgerhq/hw-transport-node-hid": "^4.73.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@polkadot/keyring": "*"
|
||||
|
||||
@@ -32,7 +32,7 @@ export default class Base {
|
||||
|
||||
private _ss58Format?: Prefix;
|
||||
|
||||
public constructor () {
|
||||
constructor () {
|
||||
this._accounts = accounts;
|
||||
this._addresses = addresses;
|
||||
this._contracts = contracts;
|
||||
|
||||
@@ -28,7 +28,7 @@ export default class Ledger {
|
||||
private app: LedgerApp | null = null;
|
||||
private type: LedgerTypes;
|
||||
|
||||
public constructor (type: LedgerTypes) {
|
||||
constructor (type: LedgerTypes) {
|
||||
assert(['hid', 'u2f', 'webusb'].includes(type), `Unsupported transport ${type}`);
|
||||
|
||||
this.type = type;
|
||||
|
||||
@@ -12,7 +12,7 @@ import path from 'path';
|
||||
export default class FileStore implements KeyringStore {
|
||||
private _path: string;
|
||||
|
||||
public constructor (path: string) {
|
||||
constructor (path: string) {
|
||||
if (!fs.existsSync(path)) {
|
||||
mkdirp.sync(path);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user