Skip to content

Commit

Permalink
Official ionic library
Browse files Browse the repository at this point in the history
  • Loading branch information
lubej committed Sep 8, 2023
1 parent c60d2a0 commit f1873b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"@metamask/jazzicon": "2.0.0",
"@oasisprotocol/client": "0.1.1-alpha.2",
"@oasisprotocol/client-rt": "0.2.1-alpha.2",
"@oasisprotocol/ionic-ledger-hw-transport-ble": "1.0.0-beta",
"@oasisprotocol/ledger": "1.0.0",
"@reduxjs/toolkit": "1.9.5",
"base64-arraybuffer": "1.0.2",
Expand All @@ -76,7 +77,6 @@
"grommet-icons": "4.11.0",
"i18next": "23.5.0",
"i18next-browser-languagedetector": "7.1.0",
"ionic-hw-transport-ble": "https://github.com/lubej/ionic-hw-transport-ble",
"lodash": "4.17.21",
"qrcode.react": "3.1.0",
"react": "18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/app/lib/ledger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { WalletError, WalletErrors } from 'types/errors'
import { hex2uint, publicKeyToAddress } from './helpers'
import type Transport from '@ledgerhq/hw-transport'
import { isSupported, requestLedgerDevice } from '@ledgerhq/hw-transport-webusb/lib-es/webusb'
import BleTransport from 'ionic-hw-transport-ble/lib'
import BleTransport from '@oasisprotocol/ionic-ledger-hw-transport-ble/lib'

interface LedgerAccount {
publicKey: Uint8Array
Expand Down
2 changes: 1 addition & 1 deletion src/app/state/importaccounts/saga.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { WalletType } from 'app/state/wallet/types'
import delayP from '@redux-saga/delay-p'
import { getAccountBalanceWithFallback } from '../../lib/getAccountBalanceWithFallback'
import { ScanResult } from '@capacitor-community/bluetooth-le'
import BleTransport from 'ionic-hw-transport-ble/lib'
import BleTransport from '@oasisprotocol/ionic-ledger-hw-transport-ble/lib'

describe('importAccounts Sagas', () => {
describe('enumerateAccountsFromLedger', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/app/state/importaccounts/saga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
selectSelectedBleDevice,
} from './selectors'
import { getAccountBalanceWithFallback } from '../../lib/getAccountBalanceWithFallback'
import BleTransport from 'ionic-hw-transport-ble/lib'
import BleTransport from '@oasisprotocol/ionic-ledger-hw-transport-ble/lib'
import { ScanResult } from '@capacitor-community/bluetooth-le'

function* setStep(step: ImportAccountsStep) {
Expand Down

0 comments on commit f1873b8

Please sign in to comment.